Add cloudformation template for creating s3 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to LocalStack | ||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
steps: | ||
- uses: unfor19/install-aws-cli-action@v1 | ||
with: | ||
version: 2 | ||
verbose: false | ||
- name: Setup localstack | ||
env: | ||
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }} | ||
LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }} | ||
# https://docs.localstack.cloud/user-guide/ci/github-actions/ | ||
run: | | ||
docker compose up -d | ||
echo "Waiting for LocalStack startup..." | ||
sleep 30 | ||
echo "Startup complete" | ||
- name: Deploy to LocalStack | ||
run: make deploy |