We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4162247 commit 3033a72Copy full SHA for 3033a72
1 file changed
.github/actions/build-images/action.yml
@@ -25,11 +25,15 @@ runs:
25
aws-region: ${{ inputs.aws-region }}
26
27
- name: Auth to the ECR
28
- run: bash ./docker/auth.sh ${{ inputs.aws-ecr-uri }} ${{ inputs.aws-region }}
+ env:
29
+ AWS_ECR_URI: ${{ inputs.aws-ecr-uri }}
30
+ AWS_REGION: ${{ inputs.aws-region }}
31
+ run: bash ./docker/auth.sh $AWS_ECR_URI $AWS_REGION
32
shell: bash
33
34
- name: Build and push the images
35
env:
36
TAG: ${{ inputs.tag }}
- run: bash ./docker/build.sh ${{ inputs.aws-ecr-uri }} $TAG
37
38
+ run: bash ./docker/build.sh $AWS_ECR_URI $TAG
39
0 commit comments