Skip to content

Commit

Permalink
change name
Browse files Browse the repository at this point in the history
  • Loading branch information
devout-coder committed Sep 7, 2024
1 parent f8fe854 commit 7d4f776
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:
# Build the Docker image
- name: Build Docker image
run: |
docker build -t doneify .
docker tag doneify:latest ${{ secrets.ECR_REPOSITORY }}:latest
docker build -t my_repo .
docker tag my_repo:latest ${{ secrets.ECR_REPOSITORY }}/my_repo:latest
# Push the Docker image to Amazon ECR
- name: Push Docker image to ECR
run: |
docker push ${{ secrets.ECR_REPOSITORY }}:latest
docker push ${{ secrets.ECR_REPOSITORY }}/my_repo:latest
deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7d4f776

Please sign in to comment.