Skip to content

Commit

Permalink
RCORE-2134 fix output syntax (#7763)
Browse files Browse the repository at this point in the history
* fix output syntax

* fix run syntax
  • Loading branch information
ironage authored May 31, 2024
1 parent f3ef3d4 commit 0a1fce3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
6 changes: 5 additions & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 0a1fce3

Please sign in to comment.