Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@ jobs:

- name: Push NuGet
if: github.ref == 'refs/heads/master'
shell: pwsh
run: |
dotnet nuget push "nupkgs/$($env:APP_NAME).$($env:VERSION).nupkg" -s "$($env:NUGET_HOST)" -k "$($env:NUGET_APIKEY)"
dotnet nuget push "nupkgs/$($env:APP_NAME).$($env:VERSION).snupkg" -s "$($env:NUGET_HOST)" -k "$($env:NUGET_APIKEY)"
dotnet nuget push nupkgs/$env:APP_NAME"."$env:VERSION.nupkg -s $env:NUGET_HOST -k $env:NUGET_APIKEY
dotnet nuget push nupkgs/$env:APP_NAME"."$env:VERSION.snupkg -s $env:NUGET_HOST -k $env:NUGET_APIKEY

- name: GitHub Release
if: github.ref == 'refs/heads/master'
Expand Down