From e09404bf605d9b009e6283e46de85bf5f38fa12f Mon Sep 17 00:00:00 2001 From: semantic-release-bot <semantic-release-bot@martynus.net> Date: Thu, 2 Sep 2021 13:13:02 +0000 Subject: [PATCH] chore(release): 2.0.0 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [2.0.0](https://gitlab.com/to-be-continuous/docker/compare/1.2.3...2.0.0) (2021-09-02) ### Features * Change boolean variable behaviour ([f74d9ef](https://gitlab.com/to-be-continuous/docker/commit/f74d9ef2de5b4dc204b519e14c47862ea2b73b33)) ### BREAKING CHANGES * boolean variable now triggered on explicit 'true' value Signed-off-by: Cédric OLIVIER <cedric3.olivier@orange.com> --- README.md | 6 +++--- templates/gitlab-ci-docker.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7f76991..7e2b338 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ In order to include this template in your project, add the following to your `.g ```yaml include: - project: 'to-be-continuous/docker' - ref: '1.2.3' + ref: '2.0.0' file: '/templates/gitlab-ci-docker.yml' ``` @@ -307,7 +307,7 @@ Here is a `.gitlab-ci.yaml` using an external Docker registry: ```yaml include: - project: 'to-be-continuous/docker' - ref: '1.2.3' + ref: '2.0.0' file: '/templates/gitlab-ci-docker.yml' variables: @@ -325,7 +325,7 @@ Here is a `.gitlab-ci.yaml` that builds 2 Docker images from the same project (u ```yaml include: - project: 'to-be-continuous/docker' - ref: '1.2.3' + ref: '2.0.0' file: '/templates/gitlab-ci-docker.yml' variables: diff --git a/templates/gitlab-ci-docker.yml b/templates/gitlab-ci-docker.yml index ced43ec..fd1a44b 100644 --- a/templates/gitlab-ci-docker.yml +++ b/templates/gitlab-ci-docker.yml @@ -367,7 +367,7 @@ stages: fi } - if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update docker "1.2.3"; fi + if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update docker "2.0.0"; fi init_workspace # ENDSCRIPT @@ -375,7 +375,7 @@ stages: .docker-base: services: - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master" - command: ["--service", "docker", "1.2.3"] + command: ["--service", "docker", "2.0.0"] before_script: - *docker-scripts @@ -404,7 +404,7 @@ stages: _TRACE: "${TRACE}" services: - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master" - command: ["--service", "docker", "1.2.3"] + command: ["--service", "docker", "2.0.0"] - name: $DOCKER_DIND_IMAGE alias: docker command: -- GitLab