This is an automated email from the git hooks/post-receive script. New commit to branch feature/bug-on-save in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit a99c73f36528c303e956127afeed133b46d65969 Author: dcosse <cosse@codelutin.com> Date: Tue Oct 8 10:39:54 2019 +0200 refs #248 add docker feature --- .gitlab-ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5c62c52a..d1643d72 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -162,6 +162,29 @@ docker: tags: - docker +docker-feature: + image: registry.nuiton.org/codelutin/dockerfiles:docker + stage: release + when: manual + only: + - /^feature.*$/ + artifacts: + paths: + - pollen-rest-api/target/pollen-rest-api-*.war + - pollen-ui-riot-js/target/dist + - expire_in: 1 day + name: "${CI_BUILD_REF_NAME}" + script: + - docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.nuiton.org + - docker build --no-cache --file Dockerfile-latest -t registry.nuiton.org/chorem/pollen:${CI_COMMIT_REF_NAME#feature/} . + - docker push registry.nuiton.org/chorem/pollen:${CI_COMMIT_REF_NAME#feature/} + - docker logout registry.nuiton.org + dependencies: + - build-java + - build-js + tags: + - docker-feature + pages: image: python:alpine stage: pages -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.