Remove checkout action and use native workspace
Some checks failed
Deploy Hello Lambda CFT / deploy (push) Failing after 0s
Some checks failed
Deploy Hello Lambda CFT / deploy (push) Failing after 0s
This commit is contained in:
parent
39fad689e8
commit
53541d27ad
1 changed files with 8 additions and 1 deletions
|
|
@ -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: |
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue