Fix stage deletion by removing unused tables (#697) #239
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
# Based on https://docs.github.com/en/actions/deployment/deploying-to-your-cloud-provider/deploying-to-amazon-elastic-container-service | |
name: Promote from main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
ci: | |
uses: ./.github/workflows/ci.yml | |
build-all: | |
needs: ci | |
uses: ./.github/workflows/ecrbuild-all.yml | |
secrets: | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
deploy-all: | |
uses: ./.github/workflows/awsdeploy.yml | |
needs: build-all | |
with: | |
proper-name: stevie | |
environment: production | |
secrets: | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} |