Skip to content

Commit

Permalink
Update cicd.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Wiran-Larbi authored Apr 4, 2024
1 parent 588531c commit 842d626
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,15 @@ jobs:
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build to Dockerhub
run: docker-compose build suivie-physique
run: docker-compose build

- name: Tag to Dockerhub
run: docker-compose tag suivie-physique:latest dotcipher/suivie-physique:latest
run: |
docker tag backend:latest dotcipher/sp-backend:latest
docker tag frontend:latest dotcipher/sp-frontend:latest
- name: Push to Dockerhub
run: docker-compose push dotcipher/suivie-physique:latest
run: |
docker push dotcipher/sp-backend:latest
docker push dotcipher/sp-frontend:latest

0 comments on commit 842d626

Please sign in to comment.