We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2e98cb commit 0e201c6Copy full SHA for 0e201c6
.github/workflows/winui-build-test.yml
@@ -27,8 +27,14 @@ jobs:
27
- name: Publish
28
run: dotnet publish WinUI3Crash.csproj -c Release -r win-x64 -p:Platform=x64 --no-self-contained
29
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
+
36
- name: Upload build artifacts
37
uses: actions/upload-artifact@v4
38
with:
39
name: WinUI3Crash-Build
- path: bin/Release/net8.0-windows10.0.19041.0/win-x64/publish/
40
+ path: bin/**/publish/
0 commit comments