diff options
author | Christian Segundo | 2023-09-16 14:09:46 +0200 |
---|---|---|
committer | Christian Segundo | 2023-09-16 14:09:46 +0200 |
commit | b27392843a5a03a1c0868bc49f7058d47f00a7d9 (patch) | |
tree | 61680aebec04d67a9514a3d4c62c52a35db87482 | |
parent | 8c3990d1030da89ba33eeae27584d91c97cf24d4 (diff) | |
download | transmission-hacks-b27392843a5a03a1c0868bc49f7058d47f00a7d9.tar.gz |
t
-rw-r--r-- | Jenkinsfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index feb77d9..feec99d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { } stages { stage('Prepare') { - steps { sh 'apt-get update && apt-get install -y podman buildah' } + steps { sh 'apt-get update && apt-get install -y buildah' } } stage('Manifest') { steps { sh "buildah manifest create $PROJECT" } @@ -43,7 +43,7 @@ pipeline { ]) { sh '''#!/bin/bash IFS=" " read -r username password <<<"$CREDENTIALS" - podman login docker.io \ + buildah login docker.io \ --username "$username" \ --password-stdin <<< "$password" ''' |