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 36a4399 commit 7bc96d1Copy full SHA for 7bc96d1
.github/workflows/Windows_release.yml
@@ -43,7 +43,13 @@ jobs:
43
44
45
- name: Push Packages
46
- run: dotnet nuget push "output/*.nupkg" -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json
+ shell: pwsh
47
+ run: |
48
+ $ErrorActionPreference = "Stop" # Makes the script stop on errors
49
+ Get-ChildItem "output\*.nupkg" -Recurse | ForEach-Object {
50
+ dotnet nuget push $_.FullName --api-key " ${{ secrets.NUGET_KEY }}" --source https://api.nuget.org/v3/index.json
51
+ }
52
+
53
54
- name: Create GitHub Release
55
uses: softprops/action-gh-release@v1
0 commit comments