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 44b5a85 commit 1bb3c01Copy full SHA for 1bb3c01
.github/workflows/ci.yml
@@ -371,6 +371,16 @@ jobs:
371
- name: Upload NuGet package to NuGet.org
372
if: ${{ github.event_name == 'release' }}
373
run: dotnet nuget push nuget-publish/**.nupkg --source nuget --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate
374
+
375
+ - name: Upload build to GitHub release
376
+ if: ${{ github.event_name == 'release' }}
377
+ uses: svenstaro/[email protected]
378
+ with:
379
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
380
+ file: versioned-publish/*
381
+ overwrite: true
382
+ tag: ${{ github.ref }}
383
+ file_glob: true
384
385
- name: Restore local dotnet tools
386
run: |
0 commit comments