From 855bde3588b0fe85e500bec185dc2f311b15f98a Mon Sep 17 00:00:00 2001 From: Austin Parker Date: Fri, 3 Nov 2023 13:45:30 -0400 Subject: [PATCH] fix build (#1212) --- .github/workflows/build-images.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml index 194d42ad0e..90c92b2a4b 100644 --- a/.github/workflows/build-images.yml +++ b/.github/workflows/build-images.yml @@ -109,13 +109,13 @@ jobs: FORCE_PUSH=${{ inputs.push }} if [ "$FORCE_PUSH" = true ]; then echo "Force push is enabled, proceeding with build." - echo "skip='false'" >> "$GITHUB_OUTPUT" + echo "skip=false" >> "$GITHUB_OUTPUT" elif [ -z "$FILES_CHANGED" ]; then echo "No changes in ${{ matrix.file_tag.context }}, skipping build." - echo "skip='true'" >> "$GITHUB_OUTPUT" + echo "skip=true" >> "$GITHUB_OUTPUT" else echo "Changes detected in ${{ matrix.file_tag.context }}, proceeding with build." - echo "skip='false'" >> "$GITHUB_OUTPUT" + echo "skip=false" >> "$GITHUB_OUTPUT" fi - name: Log in to the Container registry uses: docker/login-action@v3