From 590a3a3723b0018cd0a404ff95d59867ed2727c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Wei=C3=9F?= <72068105+Sandoun@users.noreply.github.com> Date: Mon, 21 Aug 2023 16:39:01 +0200 Subject: [PATCH] (pipeline) Fix deploy mode to Release --- .github/workflows/publish-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-pipeline.yml b/.github/workflows/publish-pipeline.yml index c160630..940cea1 100644 --- a/.github/workflows/publish-pipeline.yml +++ b/.github/workflows/publish-pipeline.yml @@ -140,10 +140,10 @@ jobs: run: dotnet restore ./MewtocolNet/MewtocolNet.csproj - name: Build as ${{ github.event.inputs.version_tag }}${{ env.prerelease_append }} - run: dotnet build "MewtocolNet" --no-incremental + run: dotnet build "MewtocolNet" --no-incremental -c:Release - name: Pack as ${{ github.event.inputs.version_tag }}${{ env.prerelease_append }} - run: dotnet pack "MewtocolNet" + run: dotnet pack "MewtocolNet" -c:Release - name: Publish as ${{ github.event.inputs.version_tag }}${{ env.prerelease_append }} run: |