From 525a2a0f479c6b928575a8653f1bec364a81d105 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 16 Jul 2026 11:34:22 +0200 Subject: [PATCH] Update GPG passphrase credential ID in Publish Repository stage of Jenkinsfile --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6b8b8cf..f7a02a8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -59,16 +59,16 @@ pipeline { withCredentials([ string( - credentialsId: 'espos-gpg-passphrase', + credentialsId: 'aptly_gpg_pass', variable: 'GPG_PASS' ) ]) { sh ''' ssh ${APTLY_HOST} "GPG_PASS='$GPG_PASS' bash -s" << 'EOF' - + aptly repo add espos-unstable /tmp/*.deb - + if aptly publish list | grep -q espos-unstable then aptly publish update \ @@ -81,7 +81,7 @@ pipeline { -passphrase="$GPG_PASS" \ espos-unstable fi - + EOF ''' }