Skip to content

Commit

Permalink
Replace deprecated set-output with write to GITHUB_OUTPUT
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Nov 22, 2022
1 parent f42d35b commit 5082c41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
GITHUB_REF: ${{ github.ref }}
run: |
source venv/bin/activate
echo "::set-output name=body::$(python App/Distribute/extract_changes.py)"
echo "changelog_contents=$(python App/Distribute/extract_changes.py)" >>$GITHUB_OUTPUT
- name: Create Release
id: create_release
Expand All @@ -101,7 +101,7 @@ jobs:
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ${{ steps.changelog.outputs.body }}
body: ${{ steps.changelog.outputs.changelog_contents }}
draft: true
prerelease: false

Expand Down

0 comments on commit 5082c41

Please sign in to comment.