Skip to content

Commit

Permalink
Added AWS SAM files
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelthotti committed Nov 9, 2024
1 parent 3656fb8 commit a866c6c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/sam-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2

- uses: aws-actions/setup-sam@v1

- uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
Expand All @@ -19,10 +22,10 @@ jobs:
- name: SAM Build
run: sam build --use-container

# Deploy the SAM application
- name: SAM Deploy
# Deploy the SAM application with --guided to avoid parameter conflicts
- name: SAM Deploy (Guided)
run: |
sam deploy \
sam deploy --guided \
--no-confirm-changeset \
--no-fail-on-empty-changeset \
--stack-name sam-hello-world \
Expand Down

0 comments on commit a866c6c

Please sign in to comment.