We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80895b7 commit 13a52dcCopy full SHA for 13a52dc
.gitlab-ci.yml
@@ -188,8 +188,10 @@ cli:npm:publish:
188
- rm -f ~/.npmrc
189
rules:
190
- if: '$CI_COMMIT_TAG =~ /^v?\\d+\\.\\d+(\\.\\d+)?-(dev|beta)\\.\\d+$/'
191
- # Allow publishing from GitLab "Run pipeline" UI when the selected ref looks like a release tag.
192
- - if: '$CI_PIPELINE_SOURCE == "web" && $CI_COMMIT_REF_NAME =~ /^v?\\d+\\.\\d+(\\.\\d+)?-(dev|beta)\\.\\d+$/'
+ # GitLab "Run pipeline" UI ("web" pipelines) often doesn't populate tag vars consistently.
+ # Keep this job available manually so the pipeline is never empty; the script validates the ref name.
193
+ - if: '$CI_PIPELINE_SOURCE == "web"'
194
+ when: manual
195
196
cli:node:e2e:dind:
197
stage: test
0 commit comments