File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments