pipeline { agent none environment { GIT_REF = """${sh( script: 'git describe --tags --exact-match 2>/dev/null || git symbolic-ref --short HEAD' returnStdout: true, )}""" } stages { stage('Build') { agent { label 'linux-aarch64' } steps { sh "podman build -t docker.io/thallian/atuin:${env.GIT_REF} ." } } } }