Skip to content

Commit

Permalink
Trying to get the images to deploy to Heroku
Browse files Browse the repository at this point in the history
  • Loading branch information
kenlight-bu committed Sep 27, 2024
1 parent 64df114 commit c553d92
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
- name: Build and Push Client Image to Heroku Container Registry
run: |
docker build -t registry.heroku.com/${{ secrets.HEROKU_APP_NAME_CLIENT }}/web -f code/client/Dockerfile.production ./code
docker push registry.heroku.com/${{ secrets.HEROKU_APP_NAME_CLIENT }}/web
docker build -t registry.heroku.com/peak-performance/web -f code/client/Dockerfile.production ./code
docker push registry.heroku.com/peak-performance/web
- name: Build and Push Server Image to Heroku Container Registry
run: |
docker build -t registry.heroku.com/${{ secrets.HEROKU_APP_NAME_SERVER }}/web -f code/server/Dockerfile.production ./code
docker push registry.heroku.com/${{ secrets.HEROKU_APP_NAME_SERVER }}/web
docker build -t registry.heroku.com/peak-performance/web -f code/server/Dockerfile.production ./code
docker push registry.heroku.com/peak-performance/web
- name: Release Client on Heroku
run: |
Expand Down

0 comments on commit c553d92

Please sign in to comment.