clean string interpolation
dockers/pixelfed/pipeline/head This commit looks good Details

This commit is contained in:
chris 2023-06-09 19:55:53 +02:00
parent b5299e8a6f
commit 73dde44afe
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

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