From 23559e1140a6f09872941c50681f46ee305a975a Mon Sep 17 00:00:00 2001 From: "Michael Hawker MSFT (XAML Llama)" <24302614+michael-hawker@users.noreply.github.com> Date: Wed, 21 Aug 2024 13:36:35 -0700 Subject: [PATCH] Update build.yml for release to update matrix identifier usage Issue introduced from #456 --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2940c52a..410265ad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -361,7 +361,7 @@ jobs: uses: actions/upload-artifact@v4 if: ${{ env.IS_RELEASE == 'true' }} with: - name: signed-nuget-packages-${{ matrix.platform }} + name: signed-nuget-packages-${{ matrix.winui }} if-no-files-found: error path: | ${{ github.workspace }}/packages/**/*.nupkg @@ -375,7 +375,7 @@ jobs: strategy: fail-fast: false # prevent one matrix pipeline from being cancelled if one fails, we want them both to run to completion. matrix: - platform: [WinUI2, WinUI3] + winui: [2, 3] steps: - name: Install .NET SDK v${{ env.DOTNET_VERSION }} @@ -383,10 +383,10 @@ jobs: with: dotnet-version: ${{ env.DOTNET_VERSION }} - - name: Download signed packages for ${{ matrix.platform }} + - name: Download signed packages for WinUI ${{ matrix.winui }} uses: actions/download-artifact@v4 with: - name: signed-nuget-packages-${{ matrix.platform }} + name: signed-nuget-packages-${{ matrix.winui }} path: ./packages - name: Push to NuGet.org