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.
2 parents 908e43a + 03c9f4c commit add557aCopy full SHA for add557a
.github/workflows/ci-build.yml
@@ -56,9 +56,20 @@ jobs:
56
name: NuGet Packages
57
path: artifacts/NuGet/Release
58
59
+ publish:
60
+ needs: build
61
+ runs-on: windows-2022
62
+ environment: ci-nuget-publish
63
+ steps:
64
+ - name: Download artifacts
65
+ uses: actions/download-artifact@v4
66
+ with:
67
+ name: NuGet Packages
68
+ path: packages
69
+
70
- name: Push to NuGet
71
run: |
- dotnet nuget push artifacts\NuGet\Release\*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
72
+ dotnet nuget push packages\*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
73
74
- name: Comment on PR
75
if: github.event_name == 'pull_request'
0 commit comments