From 98020a75909e9a5ec9ffe41fb8631d29378c6d28 Mon Sep 17 00:00:00 2001 From: Arseni Kalma Date: Thu, 19 Feb 2026 10:10:51 +0100 Subject: [PATCH] Update push-ecr.yaml --- .github/workflows/push-ecr.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push-ecr.yaml b/.github/workflows/push-ecr.yaml index 2241afd5ca0..c7f57c8019e 100644 --- a/.github/workflows/push-ecr.yaml +++ b/.github/workflows/push-ecr.yaml @@ -12,10 +12,14 @@ on: description: 'Version to tag the Docker image' required: false type: string + ecr_repository: + description: 'ECR repository name (overrides vars.ECR_REPOSITORY)' + required: false + type: string env: AWS_REGION: ${{ vars.AWS_REGION || 'eu-central-1' }} - ECR_REPOSITORY: ${{ vars.ECR_REPOSITORY || 'dev-zebra-server' }} + ECR_REPOSITORY: ${{ inputs.ecr_repository || vars.ECR_REPOSITORY || 'dev-zebra-server' }} DOCKERFILE_PATH: ${{ vars.DOCKERFILE_PATH }} jobs: