Init
This commit is contained in:
commit
f90fdc0598
99 changed files with 15260 additions and 0 deletions
17
.gitlab/_rules.gitlab-ci.yml
Normal file
17
.gitlab/_rules.gitlab-ci.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
.if-release-candidate-tag: &if-release-candidate-tag
|
||||
if: '$CI_COMMIT_TAG =~ /^v[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]+/'
|
||||
|
||||
.if-stable-release-tag: &if-stable-release-tag
|
||||
if: '$CI_COMMIT_TAG =~ /^v[0-9]+\.[0-9]+\.[0-9]+$/'
|
||||
|
||||
.if-default-branch: &if-default-branch
|
||||
if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||
|
||||
.rules:release:
|
||||
rules:
|
||||
- <<: *if-release-candidate-tag
|
||||
- <<: *if-stable-release-tag
|
||||
|
||||
.rules:default:
|
||||
rules:
|
||||
- <<: *if-default-branch
|
Loading…
Add table
Add a link
Reference in a new issue