mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
21 lines
719 B
YAML
21 lines
719 B
YAML
# allow_failure: true makes these pipelines manual and "non-blocking" which changed with except -> rule syntax
|
|
.optional-release:
|
|
stage: build
|
|
tags:
|
|
- veloren-docker
|
|
rules:
|
|
- if: $CI_COMMIT_REF_NAME =~ /^master$/ || $CI_COMMIT_TAG =~ /^v[0-9]+\.[0-9]+\.[0-9]+/ || $CI_COMMIT_REF_NAME =~ /^r[0-9]+\.[0-9]+/ || $CI_PIPELINE_SOURCE == "schedule"
|
|
when: never
|
|
- when: manual
|
|
allow_failure: true
|
|
|
|
# Template to only run if pushes to master or a tag happened
|
|
.release:
|
|
stage: build
|
|
tags:
|
|
- veloren-docker
|
|
rules:
|
|
- if: $CI_COMMIT_REF_NAME =~ /^master$/ || $CI_COMMIT_TAG =~ /^v[0-9]+\.[0-9]+\.[0-9]+/ || $CI_COMMIT_REF_NAME =~ /^r[0-9]+\.[0-9]+/
|
|
when: always
|
|
- when: never
|