From: Michael Tremer Date: Thu, 5 Dec 2024 10:34:39 +0000 (+0000) Subject: jenkins: Create a new GPGHOME X-Git-Tag: 0.9.30~761 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f5ad5b07af306e677e84fc73674c8550d68483e5;p=pakfire.git jenkins: Create a new GPGHOME Signed-off-by: Michael Tremer --- diff --git a/Jenkinsfile b/Jenkinsfile index 6b4eb714f..eae24d898 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -413,7 +413,18 @@ pipeline { stage("Master Debian Repository") { agent any + environment { + GNUPGHOME = "${WORKSPACE}/.gnupg" + } + steps { + // Import the GPG key + sh """ + mkdir -p $GNUPGHOME + chmod 700 $GNUPGHOME + printenv + """ + // Unstash all stashed packages from the matrix build script { for (distro in ["trixie", "bookworm"]) {