Skip to content

feat: added cloud formation #15

feat: added cloud formation

feat: added cloud formation #15

Workflow file for this run

name: AWS
on:
push:
branches: [master]
permissions:
id-token: write
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
environment: AWS
steps:
- uses: actions/checkout@v3
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v3
with:
aws-access-key-id: ${{ secrets.ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Deploy Infrastructure
run: |
aws cloudformation deploy \
--template-file ./infrastructure/cloudFormation.yml \
--stack-name s3 \
--capabilities CAPABILITY_NAMED_IAM