UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit e152d132 authored by Josh Wolf's avatar Josh Wolf
Browse files

ci: ensure bigbang repo is also packaged in the git repo releases artifacts

parent 820c798a
No related branches found
No related tags found
1 merge request!340Resolve "Include Bigbang repos into repositories.tar.gz"
Pipeline #195705 passed
......@@ -3,6 +3,10 @@ set -ex
mkdir -p repos/
# "Package" ourselves
# Do it this way on purpose (instead of cp or rsync) to ensure this never includes any unwanted "build" artifacts
git -C repos/ clone -b ${CI_COMMIT_REF_NAME} ${CI_REPOSITORY_URL}
# Clone core
yq e ".*.git.repo | select(. != null) | path | .[-3] " "chart/values.yaml" | while IFS= read -r package; do
git -C repos/ clone -b $(yq e ".${package}.git.tag" "chart/values.yaml") $(yq e ".${package}.git.repo" "chart/values.yaml")
......
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