From 287259429409b0afa64b74e045d4f0cbc22969fd Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Thu, 25 Jan 2024 23:13:11 -0800 Subject: [PATCH] fix: Add ContinuousIntegrationBuild argument to the `dotnet pack` command. Fixes #274 --- .github/workflows/dotnetcore.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 91f1d8d3..49e60974 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -51,7 +51,7 @@ jobs: $env:VersionSuffix = 'ci{0:0000}' -f ${{ github.run_number }} } - dotnet pack --configuration Release --verbosity normal --output . + dotnet pack /p:ContinuousIntegrationBuild=true --configuration Release --verbosity normal --output . - name: Upload NuGet uses: actions/upload-artifact@v4 @@ -110,4 +110,4 @@ jobs: contents: write steps: - - uses: fastify/github-action-merge-dependabot@v3.9.1 \ No newline at end of file + - uses: fastify/github-action-merge-dependabot@v3.9.1