From aad9541fd49948048dd5831c10972f751a8c342c Mon Sep 17 00:00:00 2001 From: David Robertson Date: Mon, 28 Nov 2022 14:15:22 +0000 Subject: [PATCH] Try again to fix the tagging loop --- .github/workflows/push_complement_image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push_complement_image.yml b/.github/workflows/push_complement_image.yml index 0fdfa693bcbd..6410641b2a36 100644 --- a/.github/workflows/push_complement_image.yml +++ b/.github/workflows/push_complement_image.yml @@ -67,7 +67,7 @@ jobs: run: scripts-dev/complement.sh --build-only - name: Tag and push generated image run: | - for TAG in "${{ steps.meta.outputs.tags }}"; do + for TAG in ${{ join(fromJson(steps.meta.outputs.json).tags, '') }}; do echo "tag and push $TAG" docker tag complement-synapse $TAG docker push $TAG