File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828 # Checks-out the repository under $GITHUB_WORKSPACE
2929 - uses : actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v4.2.2
3030 with :
31- ref : ' dev'
32-
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 ==="
31+ ref : ' gcbeatty/runtime2'
6132
33+
6234 # Update .NET 8 AMD64 Dockerfile
6335 - name : Update .NET 8 AMD64
6436 id : update-net8-amd64
You can’t perform that action at this time.
0 commit comments