Skip to content

Commit d1ef5b0

Browse files
authored
Merge pull request #278 from xt0rted/release-announcement
Create announcement during release
2 parents 3bed945 + 7dafb38 commit d1ef5b0

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
@@ -64,6 +64,16 @@ jobs:
6464
body: ${{ steps.changelog_reader.outputs.changes }}
6565
files: ./artifacts/*.nupkg
6666

67+
- name: Create discussion for release
68+
run: |
69+
gh api \
70+
--method PATCH \
71+
-H "Accept: application/vnd.github+json" \
72+
/repos/${{ github.repository }}/releases/${{ steps.release_updater.outputs.id }} \
73+
-f discussion_category_name='Announcements'
74+
env:
75+
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
76+
6777
- name: Publish to GPR
6878
run: |
6979
dotnet nuget push "./artifacts/*.nupkg" \

0 commit comments

Comments
 (0)