You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix sign artifact mismatch in GitHub Actions workflow
The sign job was failing with 'Artifact not found for name: nuget-list-2'
because the Labs-Windows workflow was missing the upload step for the
nuget-list artifact that the sign job expected to download.
Changes made:
- Added missing SignClientFileList.txt containing '**/CommunityToolkit.*'
- Added upload step in package job to create nuget-list-{winui} artifacts
- Fixed conditional for signed package upload artifacts
This ensures both required artifacts are uploaded by the package job:
1. nuget-packages-winui{N} (the actual .nupkg files)
2. nuget-list-{N} (SignClientFileList.txt for signing)
The sign job should now successfully download both artifacts to proceed with signing.
0 commit comments