Skip to content
Snippets Groups Projects
Verified Commit 81fcc83c authored by David Hoese's avatar David Hoese
Browse files

Fix commit tag check in helm base

parent e853835f
No related branches found
Tags gcp-r20210105_1858
No related merge requests found
......@@ -11,7 +11,7 @@
# has the project "Viewer" role. If it still produces a warning then try
# enabling this Cloud Resource Manager API. See admin/GCP_README.md
# for more information.
- if [[ $CI_COMMIT_TAG ~= ^gcp-r[0-9]+_[0-9]+ ]]; then
- if [[ $CI_COMMIT_TAG =~ ^gcp-r[0-9]+_[0-9]+ ]]; then
export KUBECONFIG="/root/.kube/config";
gcloud --verbosity=debug auth activate-service-account "${GEOSPHERE_DEPLOY_GCP_SA_EMAIL}" --key-file="${GEOSPHERE_DEPLOY_GCP_SA_KEY}";
gcloud --verbosity=debug config set project "${GEOSPHERE_DEPLOY_GCP_PROJECT_NAME}";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment