From fb550850a6b27b2c2284056ed65bc5d48e527518 Mon Sep 17 00:00:00 2001 From: Justin Yoo Date: Wed, 8 Jul 2020 12:55:10 +0900 Subject: [PATCH] Update release-*.yaml --- .github/workflows/release-all.yaml | 2 +- .github/workflows/release-cli.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-all.yaml b/.github/workflows/release-all.yaml index 5007f5c..1ba2e22 100644 --- a/.github/workflows/release-all.yaml +++ b/.github/workflows/release-all.yaml @@ -69,7 +69,7 @@ jobs: shell: pwsh run: | dir - msbuild . /p:Configuration=Release /p:Version=${{ steps.release.outputs.version }} /p:Verbosity=minimal + dotnet build . -c Release -p:Version=${{ steps.release.outputs.version }} -v minimal - name: Test solution shell: pwsh diff --git a/.github/workflows/release-cli.yaml b/.github/workflows/release-cli.yaml index addbcb1..1a40cc1 100644 --- a/.github/workflows/release-cli.yaml +++ b/.github/workflows/release-cli.yaml @@ -82,7 +82,7 @@ jobs: shell: pwsh run: | dir - msbuild . /p:Configuration=Release /p:Version=${{ steps.release.outputs.version }} /p:Verbosity=minimal + dotnet build . -c Release -p:Version=${{ steps.release.outputs.version }} -v minimal - name: Test solution if: steps.release.outputs.module == 'cli' && ((matrix.targetFramework == 'net461' && matrix.runtime == 'win-x64') || matrix.targetFramework == 'netcoreapp3.1')