Skip to content

Commit

Permalink
Fix ECR repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheusdeMelo committed Oct 6, 2022
1 parent 0292f76 commit c7daf30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
run: aws ecr-public get-login-password --region ${{ secrets.AWS_REGION }} | docker login --username AWS --password-stdin public.ecr.aws/h4u2q3r3

- name: Build Docker AMI
run: docker build -t veezor .
run: docker build -t maestro .

- name: Tag Docker AMI
run: docker tag veezor:latest public.ecr.aws/h4u2q3r3/veezor:${GITHUB_REF:10}
run: docker tag maestro:latest public.ecr.aws/h4u2q3r3/maestro:${GITHUB_REF:10}

- name: Push Docker AMI
run: docker push public.ecr.aws/h4u2q3r3/veezor:${GITHUB_REF:10}
run: docker push public.ecr.aws/h4u2q3r3/maestro:${GITHUB_REF:10}

0 comments on commit c7daf30

Please sign in to comment.