From fd7d0360774966ef8e908a8a1d87810a77c6f439 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Fri, 20 Jan 2023 14:32:48 +0100 Subject: [PATCH] ci: add version suffix to dotnet build and nuget push --- .github/workflows/build-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 6248dc6..797ff03 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -25,7 +25,7 @@ jobs: - name: Restore dependencies run: dotnet restore - name: Build - run: dotnet build --no-restore + run: dotnet build --no-restore --version-suffix "main$GITHUB_RUN_ID" - name: Test run: dotnet test --no-build --verbosity normal --filter FullyQualifiedName!~NosSmooth.Game.Tests @@ -36,6 +36,6 @@ jobs: - name: Publish NuGet on MyGet working-directory: nuget if: github.ref == 'refs/heads/main' && github.event_name == 'push' - run: dotnet nuget push *.nupkg --skip-duplicate -k $MYGET_AUTH_TOKEN -s https://www.myget.org/F/nossmooth/api/v3/index.json + run: dotnet nuget push *.nupkg --skip-duplicate --version-suffix "main$GITHUB_RUN_ID" -k $MYGET_AUTH_TOKEN -s https://www.myget.org/F/nossmooth/api/v3/index.json env: MYGET_AUTH_TOKEN: ${{secrets.MYGET_KEY}} \ No newline at end of file -- 2.49.0