This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 0de4fa2ecca6e395d6380b7bc90705e54e38d736 Author: Jean Couteau <couteau@codelutin.com> Date: Thu Oct 1 09:51:00 2020 +0200 Update .gitlab-ci.yml --- .gitlab-ci.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0713013c..87d48428 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,8 +15,8 @@ build-java: paths: - pollen-rest-api/target/pollen-rest-api-*.war expire_in: 4 weeks - except: - - schedules + rules: + - if: '$CI_PIPELINE_SOURCE != "schedule"' build-js: image: registry.nuiton.org/codelutin/dockerfiles:nodejs10 @@ -29,16 +29,15 @@ build-js: paths: - pollen-ui-riot-js/target/dist/ expire_in: 4 weeks - except: - - schedules + rules: + - if: '$CI_PIPELINE_SOURCE != "schedule"' release: image: registry.nuiton.org/codelutin/dockerfiles:maven-release-with-frequent-libraries stage: release when: manual - rules: - - if: $CI_COMMIT_BRANCH =~ "/^release\/.*$/" && '$CI_COMMIT_TAG =~ "/^$/"' + - if: '$CI_COMMIT_BRANCH =~ "/^release\/.*$/" && $CI_COMMIT_TAG =~ "/^$/"' script: - export OLD_DIR=$PWD - export RELEASE=${CI_COMMIT_REF_NAME} -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.