partybot/Jenkinsfile
Morgan McMillian 1cb056f3ea
All checks were successful
dreamfall/partybot/pipeline/head This commit looks good
Fix syntax error in Jenkins build
2022-11-12 20:49:56 -08:00

10 lines
159 B
Groovy

pipeline {
agent { label 'snaps' }
stages {
stage('snap') {
steps {
sh 'snapcraft'
}
}
}
}