Avoid interpolating expressions into scripts in CI workflows

This commit is contained in:
Denis Kasak
2026-07-14 16:32:03 +02:00
parent 7438953ff3
commit 7558a46faf
4 changed files with 14 additions and 7 deletions
+3 -1
View File
@@ -76,8 +76,10 @@ jobs:
- name: Run scripts-dev/complement.sh to generate complement-synapse:latest image.
run: scripts-dev/complement.sh --build-only
- name: Tag and push generated image
env:
TAGS: ${{ join(fromJson(steps.meta.outputs.json).tags, ' ') }}
run: |
for TAG in ${{ join(fromJson(steps.meta.outputs.json).tags, ' ') }}; do
for TAG in $TAGS; do
echo "tag and push $TAG"
# `localhost/complement-synapse` should match the image created by `scripts-dev/complement.sh`
docker tag localhost/complement-synapse $TAG