From edcb3ad075cd4daadb715eea65a3e8ef593a3fb1 Mon Sep 17 00:00:00 2001 From: jdickson Date: Thu, 14 Nov 2024 20:37:51 +0700 Subject: [PATCH] remove old nuget --- .github/workflows/build-and-publish.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 480eff7..78d03f1 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -30,14 +30,12 @@ jobs: if: github.ref == 'refs/heads/main' working-directory: ${{ env.GIT_REPO_ROOT }} run: | - dotnet pack Agoda.CodeCompass/Agoda.CodeCompass.csproj --configuration Release -o finalpackage --no-build -p:PackageVersion=${{ env.MAJOR_MINOR_VERSION }}${{ github.run_number }} dotnet pack Agoda.CodeCompass.MSBuild/Agoda.CodeCompass.MSBuild.csproj --configuration Release -o finalpackage --no-build -p:PackageVersion=${{ env.MAJOR_MINOR_VERSION }}${{ github.run_number }} - name: Pack Preview if: github.ref != 'refs/heads/main' working-directory: ${{ env.GIT_REPO_ROOT }} run: | - dotnet pack Agoda.CodeCompass/Agoda.CodeCompass.csproj --configuration Release -o finalpackage --no-build -p:PackageVersion=${{ env.MAJOR_MINOR_VERSION }}${{ github.run_number }}-preview dotnet pack Agoda.CodeCompass.MSBuild/Agoda.CodeCompass.MSBuild.csproj --configuration Release -o finalpackage --no-build -p:PackageVersion=${{ env.MAJOR_MINOR_VERSION }}${{ github.run_number }}-preview - name: Publish artifact