Skip to content

Commit

Permalink
Correct path
Browse files Browse the repository at this point in the history
  • Loading branch information
ngraziano committed Dec 15, 2023
1 parent a6f828b commit 411aa75
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ jobs:
- name: Restore dependencies
run: dotnet restore RTSP.sln
- name: Build
run: dotnet build --no-restore RTSP.sln
- name: Test
run: dotnet test --no-build --verbosity normal RTSP.sln
run: dotnet build --no-restore --configuration Release RTSP.sln
- name: Publish
run: dotnet nuget push */bin/Release/SharpRTSP*.nupkg -k $NUGET_AUTH_TOKEN -s https://api.nuget.org/v3/index.json
run: dotnet nuget push RTSP/bin/Release/SharpRTSP*.nupkg -k $NUGET_AUTH_TOKEN -s https://api.nuget.org/v3/index.json
env:
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_TOKEN }}

0 comments on commit 411aa75

Please sign in to comment.