From a2fb49587073e4a909ab0ba91fd2825975942f38 Mon Sep 17 00:00:00 2001 From: Alec Reynolds Date: Thu, 15 Feb 2024 11:33:12 -0800 Subject: [PATCH] Correct GITHUB_OUTPUT string. --- .github/workflows/build-php-images.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-php-images.yml b/.github/workflows/build-php-images.yml index 4f21a31..b686853 100644 --- a/.github/workflows/build-php-images.yml +++ b/.github/workflows/build-php-images.yml @@ -69,7 +69,7 @@ jobs: - name: Set tag suffix id: pr if: ${{ github.event_name == 'pull_request' }} - run: echo "tag-suffix=-edge" >> "$GITHUB_OUTPUT" + run: echo "tag_suffix=-edge" >> "$GITHUB_OUTPUT" # Build our images. - name: Login to DockerHub uses: docker/login-action@v2