We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 511f8f7 commit 7dafb38Copy full SHA for 7dafb38
.github/workflows/release.yml
@@ -71,6 +71,16 @@ jobs:
71
body: ${{ steps.changelog_reader.outputs.changes }}
72
files: ./artifacts/*.nupkg
73
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
+
84
- name: Publish to GPR
85
run: |
86
dotnet nuget push "./artifacts/*.nupkg" \
0 commit comments