Skip to content

Commit 0a1fce3

Browse files
authored
RCORE-2134 fix output syntax (#7763)
* fix output syntax * fix run syntax
1 parent f3ef3d4 commit 0a1fce3

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/make-release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,8 @@ jobs:
6161
webhook-url: ${{ secrets.SLACK_RELEASE_WEBHOOK }}
6262
version: ${{ steps.get-version.outputs.version }}
6363
- name: Output PR URL
64-
run: echo "Prepare vNext PR created: ${{ steps.vnext-pr.outputs.pull-request-url }}" >> $GITHUB_STEP_SUMMARY
64+
run: |
65+
echo "Prepare vNext PR created: $VNEXT_PR_URL" >> $GITHUB_STEP_SUMMARY
66+
shell: bash
67+
env:
68+
VNEXT_PR_URL: ${{ steps.vnext-pr.outputs.pull-request-url }}

.github/workflows/prepare-release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,8 @@ jobs:
3939
Package.swift
4040
CHANGELOG.md
4141
- name: Output PR URL
42-
run: echo "Prepare release PR created: ${{ steps.prepare-pr.outputs.pull-request-url }}" >> $GITHUB_STEP_SUMMARY
42+
run: |
43+
echo "Prepare release PR created: $PREPARE_PR_URL" >> $GITHUB_STEP_SUMMARY
44+
shell: bash
45+
env:
46+
PREPARE_PR_URL: ${{ steps.prepare-pr.outputs.pull-request-url }}

0 commit comments

Comments
 (0)