atuin/Jenkinsfile
Sebastian Hugentobler ffb72065fa
Some checks are pending
Build Multiarch Container Image / call-reusable-workflow (push) Waiting to run
try git ref
2025-06-03 18:56:32 +02:00

17 lines
450 B
Groovy

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