Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .github/workflows/deploy-lower-env.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: Deploy to lower environment (dev etc)

on:
workflow_call:
inputs:
environment:
type: string
default: dev
required: true
workflow_dispatch:
inputs:
environment:
Expand Down Expand Up @@ -41,8 +35,8 @@ jobs:
uses: mbta/workflows/.github/workflows/deploy-ecs.yml@c76e5ccd9556fbea52bc41548f7ceed5985ad775 # v5.1.0
with:
app-name: api
environment: ${{ inputs.environment }}
docker-additional-tags: ${{ inputs.environment }}
environment: ${{ inputs.environment || 'dev' }}
docker-additional-tags: ${{ inputs.environment || 'dev' }}
secrets:
aws-role-arn: ${{ secrets.AWS_ROLE_ARN }}
docker-repo: ${{ secrets.DOCKER_REPO }}
Expand Down
Loading