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
6 changes: 5 additions & 1 deletion .github/workflows/push-ecr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down