partybot/Jenkinsfile

11 lines
159 B
Plaintext
Raw Normal View History

2022-11-11 06:30:35 +00:00
pipeline {
agent { label 'snaps' }
stages {
stage('snap') {
2022-11-13 04:49:18 +00:00
steps {
sh 'snapcraft'
}
2022-11-11 06:30:35 +00:00
}
}
}