docker-PluralKit/Jenkinsfile
Ryonia Coruscare 2e6428382a Add 'Jenkinsfile'
Setting this up to see in Jenkins picks it up
2019-12-11 01:15:38 +13:00

11 lines
151 B
Groovy

pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}