Skip to content

Commit aefbe77

Browse files
committed
testing nuget release ci
1 parent dd539e7 commit aefbe77

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/nuget-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
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

0 commit comments

Comments
 (0)