Skip to content

Commit b99aa1f

Browse files
Update build.yml for release to update matrix identifier usage
Issue introduced from #456
1 parent d321713 commit b99aa1f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ jobs:
361361
uses: actions/upload-artifact@v4
362362
if: ${{ env.IS_RELEASE == 'true' }}
363363
with:
364-
name: signed-nuget-packages-${{ matrix.platform }}
364+
name: signed-nuget-packages-${{ matrix.winui }}
365365
if-no-files-found: error
366366
path: |
367367
${{ github.workspace }}/packages/**/*.nupkg
@@ -375,18 +375,18 @@ jobs:
375375
strategy:
376376
fail-fast: false # prevent one matrix pipeline from being cancelled if one fails, we want them both to run to completion.
377377
matrix:
378-
platform: [WinUI2, WinUI3]
378+
winui: [2, 3]
379379

380380
steps:
381381
- name: Install .NET SDK v${{ env.DOTNET_VERSION }}
382382
uses: actions/setup-dotnet@v4
383383
with:
384384
dotnet-version: ${{ env.DOTNET_VERSION }}
385385

386-
- name: Download signed packages for ${{ matrix.platform }}
386+
- name: Download signed packages for WinUI ${{ matrix.winui }}
387387
uses: actions/download-artifact@v4
388388
with:
389-
name: signed-nuget-packages-${{ matrix.platform }}
389+
name: signed-nuget-packages-${{ matrix.winui }}
390390
path: ./packages
391391

392392
- name: Push to NuGet.org

0 commit comments

Comments
 (0)