We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3bed945 + 7dafb38 commit d1ef5b0Copy full SHA for d1ef5b0
.github/workflows/release.yml
@@ -64,6 +64,16 @@ jobs:
64
body: ${{ steps.changelog_reader.outputs.changes }}
65
files: ./artifacts/*.nupkg
66
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
+
77
- name: Publish to GPR
78
run: |
79
dotnet nuget push "./artifacts/*.nupkg" \
0 commit comments