aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Segundo2023-09-16 14:09:46 +0200
committerChristian Segundo2023-09-16 14:09:46 +0200
commitb27392843a5a03a1c0868bc49f7058d47f00a7d9 (patch)
tree61680aebec04d67a9514a3d4c62c52a35db87482
parent8c3990d1030da89ba33eeae27584d91c97cf24d4 (diff)
downloadtransmission-hacks-b27392843a5a03a1c0868bc49f7058d47f00a7d9.tar.gz
t
-rw-r--r--Jenkinsfile4
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"
'''