Update Jenkinsfile

This commit is contained in:
themajerr 2023-07-07 11:14:29 +02:00 committed by GitHub
parent ae73c1eb2f
commit 879bf4a1ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
Jenkinsfile vendored
View file

@ -23,26 +23,26 @@ pipeline {
stage('PR - Push') {
when { branch 'PR-*' }
steps {
sh 'echo <PLACEHOLDER>'
sh 'echo "<PLACEHOLDER>"'
}
}
stage('Main - create tag') {
when { branch 'main' }
steps {
sh 'echo <create tag>'
sh 'echo "<create tag>"'
}
}
stage('Main - tag the artifact') {
when { branch 'main' }
steps {
sh 'echo <tag artifact>'
sh 'echo "<tag artifact>"'
}
}
stage('Main - push to repo') {
when { branch 'main' }
steps {
sh 'echo <push>'
sh 'echo "<push>"'
}
}
}