Add new staff users #506
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 develop branch. | |
name: Deploy Backend to Amazon ECS (STAGING) | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
call-deploy-workflow: | |
uses: ./.github/workflows/reusable-deploy-backend-server.yml | |
with: | |
ECR_REPOSITORY: gitpoap-backend-staging-server-repository | |
ECS_SERVICE: gitpoap-backend-staging-server-service | |
ECS_CLUSTER: gitpoap-backend-staging-server-cluster | |
CONTAINER_NAME: gitpoap-backend-staging-server | |
deploy_environment: staging | |
task_definition_tag: '-staging' | |
login_redirect_url: https://brisket.gitpoap.io/login | |
discord_redirect_url: https://brisket.gitpoap.io/settings?type=discord | |
secrets: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |