Fix syntax error in Jenkinsfile
Git Desu/9iron/pipeline/head This commit looks good Details

This commit is contained in:
Salt 2022-01-22 15:28:24 -06:00
parent 5229ecd6b6
commit cdd06e78d0
1 changed files with 6 additions and 2 deletions

8
Jenkinsfile vendored
View File

@ -2,10 +2,14 @@ pipeline {
agent any
stages {
stage('Build') {
echo 'BUILD'
steps {
echo 'BUILD'
}
}
stage('Build Tag') {
echo 'BUILD TAG'
steps {
echo 'BUILD TAG'
}
}
}
}