We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e3bb88 commit 4077e46Copy full SHA for 4077e46
.github/workflows/publish-nuget.yml
@@ -166,9 +166,15 @@ jobs:
166
uses: actions/setup-dotnet@v4
167
with:
168
dotnet-version: 9.0.x
169
-
170
- name: Publish NuGet package
171
run: |
172
foreach($file in (Get-ChildItem "${{ env.NuGetDirectory }}" -Recurse -Include *.nupkg)) {
173
dotnet nuget push $file --api-key "${{ secrets.NUGET_APIKEY }}" --source https://api.nuget.org/v3/index.json --skip-duplicate
174
}
+
175
+ - name: Create GitHub Release
176
+ uses: softprops/action-gh-release@v2
177
+ with:
178
+ files: ${{ env.NuGetDirectory }}/*.nupkg
179
+ generate_release_notes: true
180
+ make_latest: true
0 commit comments