UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 566558a1 authored by joshwolf's avatar joshwolf
Browse files

Merge branch 'ci/all-addons-on-tags' into 'master'

ensure all addons are also installed on tagged runs (for release purposes)

See merge request platform-one/big-bang/bigbang!341
parents 855eb871 d6784e95
No related branches found
No related tags found
1 merge request!341ensure all addons are also installed on tagged runs (for release purposes)
Pipeline #197240 passed
......@@ -4,8 +4,8 @@ set -ex
CI_VALUES_FILE="tests/ci/k3d/values.yaml"
if [[ "${CI_COMMIT_BRANCH}" == "${CI_DEFAULT_BRANCH}" ]]; then
echo "On default branch, enabling all addons"
if [[ "${CI_COMMIT_BRANCH}" == "${CI_DEFAULT_BRANCH}" ]] || [[ ! -z "$CI_COMMIT_TAG" ]]; then
echo "On default branch or tag, enabling all addons"
yq e ".addons.*.enabled = "true"" $CI_VALUES_FILE > tmpfile && mv tmpfile $CI_VALUES_FILE
else
IFS=","
......
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