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