Skip to content

Commit 708edfd

Browse files
Merge pull request #375 from hanleyyin/fix_release_indentation
Fix indentation and ECR repository name in release workflow
2 parents 6edb336 + 9b42204 commit 708edfd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/on-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333
uses: docker/login-action@v1
3434
with:
3535
registry: public.ecr.aws
36-
env:
37-
AWS_REGION: us-east-1
38-
- name: Setup Push to Public ECR
39-
run: |
40-
export TAG_BASE=${{ env.PUBLIC_REGISTRY }}/$(echo $GITHUB_REPOSITORY | sed s#/#-#)
36+
env:
37+
AWS_REGION: us-east-1
38+
- name: Setup Push to Public ECR
39+
run: |
40+
export TAG_BASE=${{ env.PUBLIC_REGISTRY }}/$(echo $GITHUB_REPOSITORY | sed s#/#-#)
4141
echo TAG_BASE=$TAG_BASE >> $GITHUB_ENV
4242
- name: Build and push container images
4343
uses: docker/build-push-action@v6
@@ -58,7 +58,7 @@ jobs:
5858
AWS_REGION: us-east-1
5959
- name: Setup Push to Staging ECR
6060
run: |
61-
export TAG_BASE=${{ env.PRIVATE_REGISTRY }}/$(echo $GITHUB_REPOSITORY | sed s#.*/##)
61+
export TAG_BASE=${{ env.PRIVATE_REGISTRY }}/eks/$(echo $GITHUB_REPOSITORY | sed s#.*/##)
6262
echo TAG_BASE=$TAG_BASE >> $GITHUB_ENV
6363
- name: Build and push arm image
6464
uses: docker/build-push-action@v6

0 commit comments

Comments
 (0)