From e3be8e58ac2887ccc11b57246d8f9d57954e6102 Mon Sep 17 00:00:00 2001 From: BigfootACA Date: Sat, 27 Apr 2024 02:05:39 +0800 Subject: [PATCH] rename credential --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4b4a8d9..b746f9b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,8 +23,8 @@ pipeline { stage('Signature packages') { steps { withCredentials([ - file(credentialsId: 'gpg-file', variable: 'GPG_FILE'), - string(credentialsId: 'gpg-secret', variable: 'GPG_SECRET') + file(credentialsId: 'ci-gpg-file', variable: 'GPG_FILE'), + string(credentialsId: 'ci-gpg-secret', variable: 'GPG_SECRET') ]) { sh 'python3 jenkins-utils/sign-pkg.py -d . -k "$GPG_FILE" -p "$GPG_SECRET"' }