partybot/Jenkinsfile

11 lines
159 B
Text
Raw Normal View History

2022-11-10 22:30:35 -08:00
pipeline {
agent { label 'snaps' }
stages {
stage('snap') {
2022-11-12 20:49:18 -08:00
steps {
sh 'snapcraft'
}
2022-11-10 22:30:35 -08:00
}
}
}