This is an automated email from the git hooks/post-receive script. New commit to branch feature/feedDeletion in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 57986b65aaebcc88b37d912370517dcb70a108a6 Author: Jean Couteau <couteau@codelutin.com> Date: Tue Dec 1 11:27:02 2020 +0100 No quotes surrounding regex in gitlab-ci.yml --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9cb20222..c755d04b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -132,7 +132,7 @@ docker:latest: image: registry.nuiton.org/codelutin/dockerfiles:docker stage: docker rules: - - if: '$CI_COMMIT_BRANCH =~ "/^develop\/.*$/" && $CI_COMMIT_TAG =~ "/^$/" && $CI_PIPELINE_SOURCE != "schedule"' + - if: '$CI_COMMIT_BRANCH =~ /^develop\/.*$/ && $CI_COMMIT_TAG =~ /^$/ && $CI_PIPELINE_SOURCE != "schedule"' when: manual artifacts: paths: @@ -155,7 +155,7 @@ docker:feature: image: registry.nuiton.org/codelutin/dockerfiles:docker stage: docker rules: - - if: '$CI_COMMIT_BRANCH =~ "/^feature\/.*$/"' + - if: '$CI_COMMIT_BRANCH =~ /^feature\/.*$/' when: manual artifacts: paths: @@ -178,7 +178,7 @@ docker-feature: image: registry.nuiton.org/codelutin/dockerfiles:docker stage: release rules: - - if: '$CI_COMMIT_BRANCH =~ "/^feature\/.*$/"' + - if: '$CI_COMMIT_BRANCH =~ /^feature\/.*$/' when: manual artifacts: paths: -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.