From cbdb493baf7f958b9184fff2dbc5aba18449b582 Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Tue, 3 Jun 2025 17:27:22 +0100 Subject: [PATCH] fix typo --- .github/workflows/publish-webapp.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-webapp.yml b/.github/workflows/publish-webapp.yml index caf7d7416..ed5a259a8 100644 --- a/.github/workflows/publish-webapp.yml +++ b/.github/workflows/publish-webapp.yml @@ -61,11 +61,11 @@ jobs: run: | tag=${{ steps.get_tag.outputs.tag }} if [[ "${{ steps.get_tag.outputs.is_semver }}" == true ]]; then - echo "BUILD_APP_VERSION=${tag}" >> "$GITHUB_OUTPUTS" + echo "BUILD_APP_VERSION=${tag}" >> "$GITHUB_OUTPUT" fi - echo "BUILD_GIT_SHA=${{ github.sha }}" >> "$GITHUB_OUTPUTS" - echo "BUILD_GIT_REF_NAME=${{ github.ref_name }}" >> "$GITHUB_OUTPUTS" - echo "BUILD_TIMESTAMP_SECONDS=$(date +%s)" >> "$GITHUB_OUTPUTS" + echo "BUILD_GIT_SHA=${{ github.sha }}" >> "$GITHUB_OUTPUT" + echo "BUILD_GIT_REF_NAME=${{ github.ref_name }}" >> "$GITHUB_OUTPUT" + echo "BUILD_TIMESTAMP_SECONDS=$(date +%s)" >> "$GITHUB_OUTPUT" - name: 🐙 Login to GitHub Container Registry uses: docker/login-action@v3