Skip to content

Commit

Permalink
feat: Add a deploy-prod GitHub Action (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshlarson authored Apr 17, 2024
1 parent 8d745dc commit 6a948d4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Deploy to Prod

on:
workflow_dispatch:

jobs:
call-workflow:
uses: mbta/workflows/.github/workflows/deploy-ecs.yml@v2
with:
app-name: ors
environment: prod
secrets:
aws-role-arn: ${{ secrets.AWS_ROLE_ARN }}
docker-repo: ${{ secrets.DOCKER_REPO }}
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}

0 comments on commit 6a948d4

Please sign in to comment.