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 93cb532cd5a2c852dc3f017e96e0a3e8b15bebed Author: Kevin Morin <morin@codelutin.com> Date: Tue Aug 3 15:32:10 2021 +0200 add docker job for develop --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f2742c1b..12faeb6e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -129,6 +129,28 @@ sonar_job_ui: - if: '$CI_PIPELINE_SOURCE == "schedule"' docker-latest: + image: registry.nuiton.org/codelutin/dockerfiles:docker + stage: docker + rules: + - if: '$CI_COMMIT_BRANCH =~ /^develop/' + when: manual + artifacts: + paths: + - pollen-rest-api/target/pollen-rest-api-*.war + - pollen-ui-riot-js/target/dist + name: "${CI_BUILD_REF_NAME}" + script: + - docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.nuiton.org + - docker build --no-cache -t registry.nuiton.org/chorem/pollen:develop -f Dockerfile . + - docker push registry.nuiton.org/chorem/pollen:develop + - docker logout registry.nuiton.org + dependencies: + - build-java + - build-js + tags: + - docker + +docker-tag: image: registry.nuiton.org/codelutin/dockerfiles:docker stage: docker rules: -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.