File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030 name : Publish to NuGet
3131 runs-on : ubuntu-latest
3232 needs : [build]
33- if : github.event_name == 'push' && github.ref == 'refs/heads/master'
33+ # TODO: revert to: if: github.event_name == 'push' && github.ref == 'refs/heads/master'
3434 steps :
3535 - uses : actions/checkout@v4
3636 with :
@@ -57,13 +57,13 @@ jobs:
5757 fi
5858
5959 - name : Pack NativeWebSocket
60- if : steps.version.outputs.changed == 'true'
60+ # TODO: revert to: if: steps.version.outputs.changed == 'true'
6161 run : dotnet pack src/NativeWebSocket/NativeWebSocket.csproj -c Release -o packages/
6262
6363 - name : Pack NativeWebSocket.MonoGame
64- if : steps.version.outputs.changed == 'true'
64+ # TODO: revert to: if: steps.version.outputs.changed == 'true'
6565 run : dotnet pack integrations/MonoGame/NativeWebSocket.MonoGame.csproj -c Release -o packages/
6666
6767 - name : Publish to NuGet
68- if : steps.version.outputs.changed == 'true'
68+ # TODO: revert to: if: steps.version.outputs.changed == 'true'
6969 run : dotnet nuget push packages/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
You can’t perform that action at this time.
0 commit comments