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 d0f2bfd commit 4cf1478Copy full SHA for 4cf1478
.github/workflows/ci.yml
@@ -137,3 +137,13 @@ jobs:
137
- name: Upload NuGet package to NuGet.org
138
if: ${{ github.event_name == 'release' }}
139
run: dotnet nuget push nupkgs/**.nupkg --source nuget --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate
140
+
141
+ - name: Upload build to GitHub release
142
+ if: ${{ github.event_name == 'release' }}
143
+ uses: svenstaro/upload-release-action@2.2.1
144
+ with:
145
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
146
+ file: nupkgs/*.*
147
+ overwrite: true
148
+ tag: ${{ github.ref }}
149
+ file_glob: true
0 commit comments