From 0f7ae1e394d01321fc89a010e9ca5aeb6e9f50b9 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Fri, 14 Jul 2023 00:04:23 -0400 Subject: [PATCH] Fix nuget package push ordering --- .github/workflows/ci-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 9bf23990d0..94b527b36a 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -1285,7 +1285,7 @@ jobs: - name: Publish Tgstation.Server.Common to NuGet uses: alirezanet/publish-nuget@c12b8546b67672ee38ac87bea491ac94a587f7cc # v3.0.0 with: - PROJECT_FILE_PATH: src/Tgstation.Server.Client/Tgstation.Server.Client.csproj + PROJECT_FILE_PATH: src/Tgstation.Server.Common/Tgstation.Server.Common.csproj TAG_COMMIT: false INCLUDE_SYMBOLS: true NUGET_KEY: ${{ secrets.NUGET_API_KEY }} @@ -1301,7 +1301,7 @@ jobs: - name: Publish Tgstation.Server.Client to NuGet uses: alirezanet/publish-nuget@c12b8546b67672ee38ac87bea491ac94a587f7cc # v3.0.0 with: - PROJECT_FILE_PATH: src/Tgstation.Server.Common/Tgstation.Server.Common.csproj + PROJECT_FILE_PATH: src/Tgstation.Server.Client/Tgstation.Server.Client.csproj TAG_COMMIT: false INCLUDE_SYMBOLS: true NUGET_KEY: ${{ secrets.NUGET_API_KEY }}