atuin/Jenkinsfile

9 lines
169 B
Text
Raw Normal View History

2025-03-06 16:03:07 +01:00
pipeline {
stages {
2025-06-03 15:37:00 +00:00
stage('Build') {
2025-03-06 16:03:07 +01:00
steps {
2025-06-03 15:37:00 +00:00
sh 'podman build -t docker.io/thallian/atuin:18.6.1'
2025-03-06 16:03:07 +01:00
}
}
}
2025-06-03 15:24:47 +00:00
}