From 296ceb8e3cd5d16de1df5dd3b2e7654a961099a9 Mon Sep 17 00:00:00 2001 From: meagharty <149533950+meagharty@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:58:30 -0400 Subject: [PATCH] feat: add docker-additional-args to deploy-ecs for build-push-ecr (#36) --- .github/workflows/deploy-ecs.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/deploy-ecs.yml b/.github/workflows/deploy-ecs.yml index e31e10f..bc0ed3d 100644 --- a/.github/workflows/deploy-ecs.yml +++ b/.github/workflows/deploy-ecs.yml @@ -10,6 +10,11 @@ on: description: Path to the repo's Dockerfile required: false default: '.' + docker-additional-args: + type: string + description: Additional arguments to pass to call to docker + required: false + default: '' environment: type: string required: true @@ -43,6 +48,7 @@ jobs: role-to-assume: ${{ secrets.aws-role-arn }} docker-repo: ${{ secrets.docker-repo }} dockerfile-path: ${{ inputs.dockerfile-path }} + docker-additional-args: ${{ inputs.docker-additional-args }} - uses: mbta/actions/deploy-ecs@v2 with: role-to-assume: ${{ secrets.aws-role-arn }}