From 73dde44afee861ff7001f6ea51eb13868bea5e96 Mon Sep 17 00:00:00 2001 From: chris Date: Fri, 9 Jun 2023 19:55:53 +0200 Subject: [PATCH] clean string interpolation --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c9e3069..7b03b63 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,12 +22,12 @@ pipeline { sh "buildah push " + image + ':test' } script { - sh "buildah login -u $IO_CRED_USR -p $IO_CRED_PSW docker.io" + sh "buildah login -u " + IO_CRED_USR+ " -p " + IO_CRED_PSW + " docker.io" sh "buildah tag pixelfed:test docker.io/zknt/pixelfed:test" sh "buildah push docker.io/zknt/pixelfed:test" } script { - sh "buildah login -u $QUAY_CRED_USR -p $QUAY_CRED_PSW quay.io" + sh "buildah login -u " + QUAY_CRED_USR+ " -p " + QUAY_CRED_PSW + " quay.io" sh "buildah tag pixelfed:test quay.io/zknt/pixelfed:test" sh "buildah push quay.io/zknt/pixelfed:test" }