We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83d76fd commit 7b87109Copy full SHA for 7b87109
1 file changed
Jenkinsfile
@@ -11,6 +11,27 @@ pipeline {
11
tools {
12
maven 'mvn3.6.3'
13
}
14
+
15
+ stages {
16
+ stage("deploy to dev") {
17
+ when {
18
+ branch 'dev'
19
+ steps {
20
+ echo 'deploy to dev'
21
+ }
22
23
24
25
+ stage("deploy to uat") {
26
27
+ branch 'master'
28
29
+ echo 'deploy to uat'
30
31
32
33
34
35
stages {
36
stage ('Initialize') {
37
steps {
0 commit comments