From 305c1f0bbb1bc8e6748e7814dbc7ffd6028960b1 Mon Sep 17 00:00:00 2001 From: Alexandru Mahmoud Date: Thu, 19 Dec 2024 13:47:27 -0500 Subject: [PATCH] Syntax squotes --- .github/workflows/build_containers.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_containers.yaml b/.github/workflows/build_containers.yaml index 4987f3b..981bc5a 100644 --- a/.github/workflows/build_containers.yaml +++ b/.github/workflows/build_containers.yaml @@ -184,14 +184,14 @@ jobs: IFS=','; for item in $PLATFORMLIST; do echo "$item=build" >> $GITHUB_OUTPUT; done - name: Download AMD64 digests - if: steps.buildlist.outputs.amd64 == "build" + if: steps.buildlist.outputs.amd64 == 'build' uses: actions/download-artifact@v4 with: name: digests-${{ matrix.base.outname }}-amd64 path: /tmp/digests/amd64 - name: Download ARM64 digests - if: steps.buildlist.outputs.arm64 == "build" + if: steps.buildlist.outputs.arm64 == 'build' uses: actions/download-artifact@v4 with: name: digests-${{ matrix.base.outname }}-arm64