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"' }