Skip to content

Commit

Permalink
Fixed CD on Windows
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Lamparter committed Mar 9, 2025
1 parent 6eb24d3 commit dcd3ad0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
-p:PackageOutputPath="$env:WORKING_DIR\bin"
- name: Publish packages to NuGet
run: dotnet nuget push ./bin/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
run: dotnet nuget push .\bin\*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json

- name: Publish symbols to NuGet
run: dotnet nuget push ./bin/*.snupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
run: dotnet nuget push .\bin\*.snupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json

0 comments on commit dcd3ad0

Please sign in to comment.