From 6c53d466d4c647ac363dbb18b4f77fb4aad85fe0 Mon Sep 17 00:00:00 2001 From: BigfootACA Date: Sat, 27 Apr 2024 02:08:24 +0800 Subject: [PATCH] rename credential --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4be9ec6..b746f9b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,14 +17,14 @@ pipeline { } stage('Build') { steps { - sh 'makepkg --config jenkins-utils/makepkg-aarch64.conf --syncdeps --force' + sh 'makepkg --config jenkins-utils/makepkg-aarch64.conf --syncdeps --noconfirm --force' } } 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"' }