Skip to content

Commit

Permalink
[BUGFIX] Replace deprecated job outputs in GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
eliashaeussler committed Oct 15, 2022
1 parent 690e546 commit 9186f94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ jobs:
# Prepare version
- id: get-version
run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//}
run: echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
- id: get-comment
run: echo ::set-output name=comment::See release notes at ${{ needs.release.outputs.release-notes-url }}
run: echo "comment=See release notes at ${{ needs.release.outputs.release-notes-url }}" >> $GITHUB_OUTPUT

# Prepare environment
- name: Setup PHP
Expand Down

0 comments on commit 9186f94

Please sign in to comment.