Skip to content

Commit 0e201c6

Browse files
Update winui-build-test.yml
1 parent e2e98cb commit 0e201c6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/winui-build-test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,14 @@ jobs:
2727
- name: Publish
2828
run: dotnet publish WinUI3Crash.csproj -c Release -r win-x64 -p:Platform=x64 --no-self-contained
2929

30+
- name: List publish directory (for debugging)
31+
run: |
32+
echo "Listing bin directory structure:"
33+
Get-ChildItem -Path . -Recurse -Directory -Filter "publish" | ForEach-Object { Write-Host $_.FullName }
34+
shell: pwsh
35+
3036
- name: Upload build artifacts
3137
uses: actions/upload-artifact@v4
3238
with:
3339
name: WinUI3Crash-Build
34-
path: bin/Release/net8.0-windows10.0.19041.0/win-x64/publish/
40+
path: bin/**/publish/

0 commit comments

Comments
 (0)