From e566125a6d428f3f5c00c8790b08f2adb02244da Mon Sep 17 00:00:00 2001 From: lindexi Date: Wed, 6 Dec 2023 15:30:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=9D=E8=AF=95=E6=89=93=E5=87=BA=E7=A7=81?= =?UTF-8?q?=E6=9C=89=E7=9A=84=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/Build.yml | 13 +++++++++++-- CustomWpf/build/Version.props | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 646918f4c..1b49bd21c 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -17,11 +17,18 @@ jobs: run: .\build.cmd -pack -ci -configuration Debug -prepareMachine /p:Platform=x86 - name: Build CustomWPF run: dotnet build CustomWpf + - name: Pack CustomWPF + run: dotnet pack CustomWpf --no-build - name: Push uses: actions/upload-artifact@v1 with: name: WPF_Debug path: ./artifacts/packages/Debug/NonShipping + - name: Push + uses: actions/upload-artifact@v1 + with: + name: WPF_Debug_Nuget + path: ./CustomWpf/bin BuildRelease: @@ -33,8 +40,10 @@ jobs: run: .\build.cmd -pack -ci -configuration Release -prepareMachine /p:Platform=x86 - name: Build CustomWPF run: dotnet build CustomWpf -c Release + - name: Pack CustomWPF + run: dotnet pack CustomWpf --no-build -c Release - name: Push uses: actions/upload-artifact@v1 with: - name: WPF_Release - path: ./artifacts/packages/Release/NonShipping + name: WPF_Release_Nuget + path: ./CustomWpf/bin diff --git a/CustomWpf/build/Version.props b/CustomWpf/build/Version.props index 0fd74ea58..1d87b8c1c 100644 --- a/CustomWpf/build/Version.props +++ b/CustomWpf/build/Version.props @@ -1,5 +1,5 @@ - 6.0.4-alpha01-202205a6c7dca6 + 6.0.4-alpha07-test03