Add license & credits to README #165
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
# This workflow will build and push a new container image to Amazon ECR, | |
# and then will deploy a new task definition to Amazon ECS, when there is a push to the main branch. | |
name: Deploy Backend to Amazon ECS (PROD) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
call-deploy-workflow: | |
uses: ./.github/workflows/reusable-deploy-backend-server.yml | |
with: | |
ECR_REPOSITORY: gitpoap-backend-server-repository | |
ECS_SERVICE: gitpoap-backend-server-service | |
ECS_CLUSTER: gitpoap-backend-server-cluster | |
CONTAINER_NAME: gitpoap-backend-server | |
deploy_environment: production | |
task_definition_tag: '' | |
login_redirect_url: https://gitpoap.io/login | |
discord_redirect_url: https://gitpoap.io/settings?type=discord | |
secrets: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |