Skip to content

Commit

Permalink
fix output syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ironage committed May 31, 2024
1 parent f3ef3d4 commit 3e90680
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,7 @@ 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 }}
5 changes: 4 additions & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,7 @@ 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 3e90680

Please sign in to comment.