From 0a1fce357080dbf034505f20d5a44e3222e58e4f Mon Sep 17 00:00:00 2001 From: James Stone Date: Fri, 31 May 2024 15:45:54 -0700 Subject: [PATCH] RCORE-2134 fix output syntax (#7763) * fix output syntax * fix run syntax --- .github/workflows/make-release.yml | 6 +++++- .github/workflows/prepare-release.yml | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/make-release.yml b/.github/workflows/make-release.yml index f4f5a45e981..de59c38f18e 100644 --- a/.github/workflows/make-release.yml +++ b/.github/workflows/make-release.yml @@ -61,4 +61,8 @@ jobs: webhook-url: ${{ secrets.SLACK_RELEASE_WEBHOOK }} version: ${{ steps.get-version.outputs.version }} - name: Output PR URL - run: echo "Prepare vNext PR created: ${{ steps.vnext-pr.outputs.pull-request-url }}" >> $GITHUB_STEP_SUMMARY + run: | + echo "Prepare vNext PR created: $VNEXT_PR_URL" >> $GITHUB_STEP_SUMMARY + shell: bash + env: + VNEXT_PR_URL: ${{ steps.vnext-pr.outputs.pull-request-url }} diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index 6f7c0037000..c02f4f225f8 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -39,4 +39,8 @@ jobs: Package.swift CHANGELOG.md - name: Output PR URL - run: echo "Prepare release PR created: ${{ steps.prepare-pr.outputs.pull-request-url }}" >> $GITHUB_STEP_SUMMARY + run: | + echo "Prepare release PR created: $PREPARE_PR_URL" >> $GITHUB_STEP_SUMMARY + shell: bash + env: + PREPARE_PR_URL: ${{ steps.prepare-pr.outputs.pull-request-url }}