10000 publish debug symbols for monthly preview on NuGet · pythonnet/pythonnet@dc3c818 · GitHub
[go: up one dir, main page]

Skip to content

Commit dc3c818

Browse files
committed
publish debug symbols for monthly preview on NuGet
1 parent ee0ab7f commit dc3c818

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/nuget-preview.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ jobs:
5454
run: dotnet pack --configuration Release --version-suffix preview${{env.DATE_VER}} --output "Release-Preview"
5555

5656
- name: Publish NuGet
57-
run: dotnet nuget push --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_MONTHLY }} Release-Preview/*.nupkg
57+
run: |
58+
dotnet nuget push --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_MONTHLY }} Release-Preview/*.nupkg
59+
dotnet nuget push --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_MONTHLY }} Release-Preview/*.snupkg
5860
5961
# TODO: Run perf tests
6062
# TODO: Run mono tests on Windows?

0 commit comments

Comments
 (0)
0