From 7b0a6dc409f7927c3622fb7232601332a014c496 Mon Sep 17 00:00:00 2001 From: 0x5BFA <62196528+0x5bfa@users.noreply.github.com> Date: Thu, 25 Jul 2024 11:40:30 +0900 Subject: [PATCH] Update cd-store.yml --- .github/workflows/cd-store.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cd-store.yml b/.github/workflows/cd-store.yml index 8206d21ba..44b5792e0 100644 --- a/.github/workflows/cd-store.yml +++ b/.github/workflows/cd-store.yml @@ -23,7 +23,7 @@ jobs: env: APPX_BUNDLE_PLATFORMS: 'x64|arm64' CONFIGURATION: '${{ matrix.configuration }}' - ARCHITECTURE: '${{ matrix.platform }}' + PLATFORM: '${{ matrix.platform }}' WORKING_DIR: '${{ github.workspace }}' # Default: 'D:\a\FluentHub\FluentHub' SOLUTION_PATH: '${{ github.workspace }}\FluentHub.sln' PACKAGE_PROJECT_DIR: '${{ github.workspace }}\src\FluentHub.Package' @@ -61,10 +61,10 @@ jobs: shell: pwsh run: | msbuild $env:SOLUTION_PATH ` - -t:Restore ` - -p:Platform=$env:ARCHITECTURE ` - -p:Configuration=$env:CONFIGURATION ` - -p:PublishReadyToRun=true + -t:Restore ` + -p:Platform=$env:PLATFORM ` + -p:Configuration=$env:CONFIGURATION ` + -p:PublishReadyToRun=true - name: Build & package FluentHub run: | @@ -81,5 +81,5 @@ jobs: - name: Upload the packages to the Artifacts uses: actions/upload-artifact@v4 with: - name: 'Appx Packages (${{ env.CONFIGURATION }}, ${{ env.ARCHITECTURE }})' + name: 'Appx Packages (${{ env.CONFIGURATION }}, ${{ env.PLATFORM }})' path: ${{ env.ARTIFACTS_STAGING_DIR }}