We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5c5972 commit df488d7Copy full SHA for df488d7
.github/workflows/aws.yml
@@ -37,7 +37,7 @@ jobs:
37
uses: aws-actions/amazon-ecr-login@v1
38
39
- name: Build, tag, and push release image to Amazon ECR
40
- id: build-image
+ id: build-image-release
41
if: github.ref_type == 'tag'
42
env:
43
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
@@ -59,7 +59,7 @@ jobs:
59
echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> $GITHUB_OUTPUT
60
61
- name: Build, tag, and push latest image to Amazon ECR
62
- id: build-image-main
+ id: build-image-latest
63
if: github.ref_type == 'branch' && github.ref_name == 'main'
64
65
0 commit comments