atuin/Jenkinsfile
Sebastian Hugentobler 9fdded3f8f
Some checks are pending
Build Multiarch Container Image / call-reusable-workflow (push) Waiting to run
use newest alpine
2025-06-03 18:38:40 +02:00

11 lines
273 B
Groovy

pipeline {
agent none
stages {
stage('Build') {
agent { label 'linux-aarch64' }
steps {
sh "podman build -t docker.io/thallian/atuin:${env.TAG_NAME ? env.TAG_NAME : env.BRANCH_NAME} ."
}
}
}
}