We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 803bb3a commit 8c79019Copy full SHA for 8c79019
Jenkinsfile
@@ -25,7 +25,7 @@ pipeline {
25
export REVISION=$TAG_NAME
26
27
# Load RVM
28
- rvm use 3.0.1@pod --create
+ rvm use 3.3.1@pod --create
29
gem install bundler
30
31
bundle config --global gems.contribsys.com $SIDEKIQ_PRO_SECRET
@@ -53,13 +53,13 @@ pipeline {
53
}
54
55
56
- stage('Deploy on release') {
+ stage('Deploy to -prod') {
57
environment {
58
DEPLOY_ENVIRONMENT = 'prod'
59
60
61
when {
62
- tag "v*"
+ branch 'main'
63
64
65
steps {
@@ -71,7 +71,7 @@ pipeline {
71
72
73
74
75
76
77
0 commit comments