try git ref
Some checks are pending
Build Multiarch Container Image / call-reusable-workflow (push) Waiting to run

This commit is contained in:
Sebastian Hugentobler 2025-06-03 19:10:54 +02:00
parent ed949f97b6
commit 05923d07a9
Signed by: shu
SSH key fingerprint: SHA256:ppcx6MlixdNZd5EUM1nkHOKoyQYoJwzuQKXM6J/t66M

3
Jenkinsfile vendored
View file

@ -1,5 +1,5 @@
pipeline {
agent none
agent { label 'linux-aarch64' }
environment {
GIT_REF = """${sh(
returnStdout: true,
@ -8,7 +8,6 @@ pipeline {
}
stages {
stage('Build') {
agent { label 'linux-aarch64' }
steps {
sh "podman build -t docker.io/thallian/atuin:${env.GIT_REF} ."
}