Skip to content

Commit 7dafb38

Browse files
committed
Create announcement during release
1 parent 511f8f7 commit 7dafb38

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/release.yml

+10
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,16 @@ jobs:
7171
body: ${{ steps.changelog_reader.outputs.changes }}
7272
files: ./artifacts/*.nupkg
7373

74+
- name: Create discussion for release
75+
run: |
76+
gh api \
77+
--method PATCH \
78+
-H "Accept: application/vnd.github+json" \
79+
/repos/${{ github.repository }}/releases/${{ steps.release_updater.outputs.id }} \
80+
-f discussion_category_name='Announcements'
81+
env:
82+
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
83+
7484
- name: Publish to GPR
7585
run: |
7686
dotnet nuget push "./artifacts/*.nupkg" \

0 commit comments

Comments
 (0)