From 64eeb1a8fd5c7df47b454b360be067d1fdc7db58 Mon Sep 17 00:00:00 2001 From: Rodrigo Antunes Date: Wed, 14 Aug 2024 16:28:45 -0300 Subject: [PATCH] Fix release utils (#3621) --- .ci/jenkins/Jenkinsfile.deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/jenkins/Jenkinsfile.deploy b/.ci/jenkins/Jenkinsfile.deploy index 6dfa58756e1..4d1602d1d68 100644 --- a/.ci/jenkins/Jenkinsfile.deploy +++ b/.ci/jenkins/Jenkinsfile.deploy @@ -153,7 +153,7 @@ pipeline { mvnCmd.skipTests() // Conflict somehow with Python testing. If `skipTests={anyvalue}` is set, then exec plugin is not executed ... } if (isRelease()) { - release.gpgImportKeyFromStringWithoutPassword(getReleaseGpgSignKeyCredsId()) + releaseUtils.gpgImportKeyFromStringWithoutPassword(getReleaseGpgSignKeyCredsId()) mavenCommand.withProfiles(['apache-release']) } configFileProvider([configFile(fileId: env.MAVEN_SETTINGS_CONFIG_FILE_ID, variable: 'MAVEN_SETTINGS_FILE')]) {