Remove checkout action and use native workspace
Some checks failed
Deploy Hello Lambda CFT / deploy (push) Failing after 0s

This commit is contained in:
Vijaya Krishna Manne 2026-05-29 14:07:18 -04:00
parent 39fad689e8
commit 53541d27ad

View file

@ -15,7 +15,14 @@ jobs:
AWS_DEFAULT_REGION: ${{ secrets.LOWER }} AWS_DEFAULT_REGION: ${{ secrets.LOWER }}
steps: steps:
- uses: actions/checkout@v4 - name: Verify workspace
run: |
pwd
ls -la
if [ ! -f "infra/hello-lambda.yml" ]; then
echo "infra/hello-lambda.yml not found in runner workspace"
exit 1
fi
- name: Ensure AWS CLI - name: Ensure AWS CLI
run: | run: |