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