We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 730c8eb commit 9ed2ecfCopy full SHA for 9ed2ecf
1 file changed
.github/workflows/windows-concurrency-test.yml
@@ -64,7 +64,13 @@ jobs:
64
- name: Dump daemon log after demo run 1
65
if: always()
66
shell: pwsh
67
- run: type "$env:TEMP\omnipkg\omnipkg_daemon.log"
+ run: |
68
+ $logFile = Get-ChildItem -Path "$env:TEMP\omnipkg" -Filter "omnipkg_daemon.log" -Recurse | Select-Object -First 1
69
+ if ($logFile) {
70
+ Get-Content $logFile.FullName
71
+ } else {
72
+ Write-Error "Could not find daemon log in $env:TEMP\omnipkg"
73
+ }
74
75
- name: Run Demo Again (Verify Caching)
76
shell: cmd
0 commit comments