9iron/Jenkinsfile
Salt cdd06e78d0
All checks were successful
Git Desu/9iron/pipeline/head This commit looks good
Fix syntax error in Jenkinsfile
2022-01-22 15:28:24 -06:00

16 lines
157 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'BUILD'
}
}
stage('Build Tag') {
steps {
echo 'BUILD TAG'
}
}
}
}