diff --git a/.github/workflows/publish-nuget.yml b/.github/workflows/publish-nuget.yml index df893fd..6af40d1 100644 --- a/.github/workflows/publish-nuget.yml +++ b/.github/workflows/publish-nuget.yml @@ -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 }}