We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 146360b commit c42efcaCopy full SHA for c42efca
Jenkinsfile
@@ -23,7 +23,7 @@ pipeline {
23
export DEPLOY=1
24
25
# Load RVM
26
- rvm use 3.1.2@library-hours --create
+ rvm use 3.2.3@library-hours --create
27
gem install bundler
28
29
bundle install --without production
@@ -50,13 +50,13 @@ pipeline {
50
}
51
52
53
- stage('Deploy on release') {
+ stage('Deploy to -prod') {
54
environment {
55
DEPLOY_ENVIRONMENT = 'prod'
56
57
58
when {
59
- tag "v*"
+ branch 'main'
60
61
62
steps {
@@ -68,7 +68,7 @@ pipeline {
68
export REVISION=$TAG_NAME
69
70
71
72
73
74
0 commit comments