diff --git a/.github/workflows/Test.GitHub.yml b/.github/workflows/Test.GitHub.yml index addd3bcc2..f90e97166 100644 --- a/.github/workflows/Test.GitHub.yml +++ b/.github/workflows/Test.GitHub.yml @@ -15,7 +15,16 @@ jobs: - name: Test Authentication using PAT shell: pwsh run: | - Write- + Write-Output '::group::[Debug info] - Environment variables' + Get-ChildItem Env: + Write-Output '::endgroup::' + + Write-Output '::group::[Debug info] - File structure' + Write-Verbose "Current directory: $((Get-Location).Path)" -Verbose + Write-Verbose "------------------------------------" -Verbose + Write-Verbose "Current directory content:" -Verbose + Get-ChildItem -Path . -Recurse | Select-Object -ExpandProperty FullName | Sort-Object + Write-Output '::endgroup::' Install-Module -Name GitHub -Verbose -Force Get-GitHubConfig Get-GitHubWorkflow -Repo $env:GITHUB_REPOSITORY -Owner $env:GITHUB_REPOSITORY_OWNER -Verbose