Skip to content

Commit 08e759a

Browse files
authored
Update Jenkinsfile
1 parent 666e455 commit 08e759a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Jenkinsfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,17 @@ pipeline {
1717
sh 'npm install'
1818
}
1919
}
20-
stage('test') {
20+
stage('Test') {
2121
steps {
2222
sh './jenkins/scripts/test.sh'
2323
}
2424
}
25+
stage('Deliver') {
26+
steps {
27+
sh './jenkins/scripts/deliver.sh'
28+
input message: 'Finished using the web site? (Click "Proceed" to continue)'
29+
sh './jenkins/scripts/kill.sh'
30+
}
31+
}
2532
}
2633
}

0 commit comments

Comments
 (0)