Skip to content

Commit b801be5

Browse files
committed
add logs
1 parent ac67228 commit b801be5

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/auto-update-Dockerfiles.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,35 @@ jobs:
3030
with:
3131
ref: 'dev'
3232

33+
# Debug: Check current directory and file structure
34+
- name: Debug - Check paths and files
35+
shell: pwsh
36+
run: |
37+
Write-Host "=== DEBUGGING INFORMATION ==="
38+
Write-Host "Current working directory: $(Get-Location)"
39+
Write-Host "PWD variable: $PWD"
40+
Write-Host ""
41+
Write-Host "Files in current directory:"
42+
Get-ChildItem -Name | Sort-Object
43+
Write-Host ""
44+
Write-Host "Checking for LambdaRuntimeDockerfiles directory:"
45+
if (Test-Path "LambdaRuntimeDockerfiles") {
46+
Write-Host "✓ LambdaRuntimeDockerfiles directory exists"
47+
Write-Host "Contents of LambdaRuntimeDockerfiles:"
48+
Get-ChildItem "LambdaRuntimeDockerfiles" -Name | Sort-Object
49+
Write-Host ""
50+
Write-Host "Checking for get-latest-aspnet-versions.ps1:"
51+
if (Test-Path "LambdaRuntimeDockerfiles/get-latest-aspnet-versions.ps1") {
52+
Write-Host "✓ get-latest-aspnet-versions.ps1 exists"
53+
Write-Host "Full path: $(Resolve-Path 'LambdaRuntimeDockerfiles/get-latest-aspnet-versions.ps1')"
54+
} else {
55+
Write-Host "✗ get-latest-aspnet-versions.ps1 NOT FOUND"
56+
}
57+
} else {
58+
Write-Host "✗ LambdaRuntimeDockerfiles directory NOT FOUND"
59+
}
60+
Write-Host "=== END DEBUGGING ==="
61+
3362
# Update .NET 8 AMD64 Dockerfile
3463
- name: Update .NET 8 AMD64
3564
id: update-net8-amd64

0 commit comments

Comments
 (0)