We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19555a7 commit c89c323Copy full SHA for c89c323
.github/actions/container-pull/action.yaml
@@ -18,6 +18,7 @@ runs:
18
steps:
19
20
- name: ECR login
21
+ shell: bash
22
run: |
23
aws ecr get-login-password --region ${{ inputs.aws_region }} | docker login --username AWS --password-stdin ${{ inputs.aws_account_id }}.dkr.ecr.${{ inputs.aws_region }}.amazonaws.com
24
@@ -27,11 +28,13 @@ runs:
27
28
name: ${{ inputs.artifact_name }}
29
30
- name: Resolve image URI for test
31
32
33
IMAGE_URI=$(cat image_uri.txt)
34
echo "Resolved image URI: $IMAGE_URI"
35
echo "IMAGE_URI=$IMAGE_URI" >> $GITHUB_ENV
36
37
- name: Pull image
38
39
40
docker pull $IMAGE_URI
0 commit comments