Skip to content

Add some more info to the README. #24

Add some more info to the README.

Add some more info to the README. #24

Workflow file for this run

name: CD
on:
push:
branches: [master]
jobs:
CD:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./aws
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- run: sam build
- run: sam deploy --no-confirm-changeset --no-fail-on-empty-changeset
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}