Skip to content

Commit 6e7bef3

Browse files
Add debug output to build-release workflow
Added commands to print the directory tree and search for 'gh-actions.ps1' and 'gh-winactions.ps1' in the workspace. This should help diagnose issues related to script paths during the workflow execution.
1 parent 01b0684 commit 6e7bef3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build-release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,12 @@ jobs:
211211
Write-Host "Repository workspace: ${{ github.workspace }}"
212212
Write-Host "Script path to execute: ${{ matrix.script }}"
213213
Write-Host "Full script path: ${{ github.workspace }}/${{ matrix.script }}"
214+
Write-Host "Directory tree from workspace root:"
215+
Get-ChildItem -Recurse | ForEach-Object { Write-Host $_.FullName }
216+
Write-Host "Results of find for gh-actions.ps1:"
217+
find . -name "gh-actions.ps1"
218+
Write-Host "Results of find for gh-winactions.ps1:"
219+
find . -name "gh-winactions.ps1"
214220
215221
- name: Run integration tests (PowerShell Core)
216222
shell: pwsh

0 commit comments

Comments
 (0)