From bff7c34b8e73c38e7da44b0007889b7e96caad30 Mon Sep 17 00:00:00 2001 From: Ivan Martell Date: Sat, 27 Jul 2024 22:36:56 +0900 Subject: [PATCH] Automation test --- .github/workflows/dotnet-desktop.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 372d0d4..4daa6fa 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -111,10 +111,11 @@ jobs: # Create the app package by building and packaging the Windows Application Packaging project - name: Create the app package - run: dotnet publish $env:Solution_Name -c $env:Configuration /p:Platform=$env:Platform /p:Version=${{ needs.prepare.steps.tag_version.outputs.new_version }} /p:AssemblyVersion=${{ needs.prepare.steps.tag_version.outputs.new_version }} + run: dotnet publish $env:Solution_Name -c $env:Configuration /p:Platform=$env:Platform /p:Version=$env:Version /p:AssemblyVersion=$env:Version env: Configuration: ${{ matrix.configuration }} Platform: ${{ matrix.platform }} + Version: ${{ needs.prepare.steps.tag_version.outputs.new_version }} - name: Zip built artifacts uses: vimtor/action-zip@v1