Skip to content

Commit 3593b93

Browse files
committed
Added delivery stage to Jenkinsfile
1 parent 18e6838 commit 3593b93

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Jenkinsfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ pipeline {
1313
sh './jenkins/scripts/test.sh'
1414
}
1515
}
16+
stage('Deliver') {
17+
steps {
18+
sh './jenkins/scripts/deliver.sh'
19+
input message: 'Finished using the web site? (Click "Proceed" to continue)'
20+
sh './jenkins/scripts/kill.sh'
21+
}
22+
}
23+
1624
}
1725
}
1826

0 commit comments

Comments
 (0)