Skip to content

Commit

Permalink
Fix docker build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
CalPinSW committed Jul 17, 2024
1 parent 9a4012f commit d9e1da5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:

- name: Build frontend Docker image
working-directory: frontend
run: docker build --target development --tag frontend:${{ github.sha }} .
run: docker build --target development --tag playlist-manager-frontend:${{ github.sha }} .
- name: Push frontend Docker image
working-directory: frontend
run: docker push calpin/playlist-manager-frontend:${{ github.sha }}

- name: Build backend Docker image
working-directory: backend
run: docker build --target development --tag backend:${{ github.sha }} .
run: docker build --target development --tag playlist-manager-backend:${{ github.sha }} .
- name: Push backend Docker image
working-directory: backend
run: docker push calpin/playlist-manager-backend:${{ github.sha }}
Expand Down

0 comments on commit d9e1da5

Please sign in to comment.