File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -396,11 +396,12 @@ jobs:
396396 REPOSITORY_NAME : ${{ inputs.dev_container_ecr }}
397397 IMAGE_TAG : ${{ inputs.dev_container_image_tag }}-amd64
398398 ACCOUNT_ID : ${{ steps.retrieve-deploy-account-id.outputs.account_id }}
399- working-directory : .workflow-github/.github/scripts
399+ working-directory : .workflow-github/
400400 run : |
401+ ls -la .
401402 # Wait a moment for ECR to process the new manifest
402403 sleep 30
403- ./check_ecr_image_scan_results.sh
404+ ./.github/scripts/ check_ecr_image_scan_results.sh
404405
405406 build_dev_container_arm64 :
406407 permissions :
@@ -454,11 +455,13 @@ jobs:
454455 REPOSITORY_NAME : ${{ inputs.dev_container_ecr }}
455456 IMAGE_TAG : ${{ inputs.dev_container_image_tag }}-arm64
456457 ACCOUNT_ID : ${{ steps.retrieve-deploy-account-id.outputs.account_id }}
457- working-directory : .workflow-github/.github/scripts
458+ working-directory : .workflow-github/
458459 run : |
460+ # List files recursively first
461+ ls -la .
459462 # Wait a moment for ECR to process the new manifest
460463 sleep 30
461- ./check_ecr_image_scan_results.sh
464+ ./.github/scripts/ check_ecr_image_scan_results.sh
462465
463466 create_multi_arch_manifest :
464467 permissions :
You can’t perform that action at this time.
0 commit comments