Skip to content

Commit

Permalink
rename variable for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
alxgomz committed Nov 4, 2024
1 parent a5cf680 commit b8ca9f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/bumpVersions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ jobs:
- name: Build manifest and run UpdateCli pipelines
shell: bash
run: |
for i in {docker-compose,helm/*}/updatecli-matrix-targets.yaml; do CHART=$(basename $(dirname $i))
echo -e "\n###### Building UpdateCli manifest for chart ${CHART}\n"
yq '. *? load("alfresco-updatecli/deployments/values/supported-matrix.yaml") | explode(.)' ${i} | tee ./${CHART}_merged.yaml
updatecli apply -c alfresco-updatecli/deployments/uber-manifest.tpl -v ./${CHART}_merged.yaml
for i in {docker-compose,helm/*}/updatecli-matrix-targets.yaml; do TARGET=$(basename $(dirname $i))
echo -e "\n###### Building UpdateCli manifest for ${TARGET}\n"
yq '. *? load("alfresco-updatecli/deployments/values/supported-matrix.yaml") | explode(.)' ${i} | tee ./${TARGET}_merged.yaml
updatecli apply -c alfresco-updatecli/deployments/uber-manifest.tpl -v ./${TARGET}_merged.yaml
done
env:
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
Expand Down

0 comments on commit b8ca9f4

Please sign in to comment.