From e705e1a80745c0a5414d61fd50baeb2b224649de Mon Sep 17 00:00:00 2001 From: semantic-release-bot <semantic-release-bot@martynus.net> Date: Fri, 3 Dec 2021 08:17:19 +0000 Subject: [PATCH] chore(release): 1.5.2 [skip ci] ## [1.5.2](https://gitlab.com/to-be-continuous/gcloud/compare/1.5.1...1.5.2) (2021-12-03) ### Bug Fixes * execute hook scripts with shebang shell ([05c2788](https://gitlab.com/to-be-continuous/gcloud/commit/05c27885d0d396c5fe4089685aae52928ff37b5b)) --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- templates/gitlab-ci-gcloud.yml | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e8ebbe..172fe79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.5.2](https://gitlab.com/to-be-continuous/gcloud/compare/1.5.1...1.5.2) (2021-12-03) + + +### Bug Fixes + +* execute hook scripts with shebang shell ([05c2788](https://gitlab.com/to-be-continuous/gcloud/commit/05c27885d0d396c5fe4089685aae52928ff37b5b)) + ## [1.5.1](https://gitlab.com/to-be-continuous/gcloud/compare/1.5.0...1.5.1) (2021-10-11) diff --git a/README.md b/README.md index 1fb19f7..850e35f 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ In order to include this template in your project, add the following to your `gi ```yaml include: - project: 'to-be-continuous/gcloud' - ref: '1.5.1' + ref: '1.5.2' file: '/templates/gitlab-ci-gcloud.yml' ``` @@ -240,7 +240,7 @@ Let's imagine a backend service: include: # Include Google Cloud template - project: 'to-be-continuous/gcloud' - ref: '1.5.1' + ref: '1.5.2' file: '/templates/gitlab-ci-gcloud.yml' ... diff --git a/templates/gitlab-ci-gcloud.yml b/templates/gitlab-ci-gcloud.yml index 3fb0e72..1f6bad6 100644 --- a/templates/gitlab-ci-gcloud.yml +++ b/templates/gitlab-ci-gcloud.yml @@ -331,7 +331,7 @@ stages: fi } - if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update gcloud "1.5.1"; fi + if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update gcloud "1.5.2"; fi # export tool functions (might be used in after_script) export -f log_info log_warn log_error assert_defined awkenvsubst @@ -347,7 +347,7 @@ stages: image: $GCP_CLI_IMAGE services: - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master" - command: ["--service", "gcloud", "1.5.1" ] + command: ["--service", "gcloud", "1.5.2" ] before_script: - *gcp-scripts - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}" -- GitLab