mirror of
https://github.com/element-hq/synapse.git
synced 2026-08-15 20:00:23 +00:00
Avoid interpolating expressions into scripts in CI workflows
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user