diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml index 14b9b5a..8f1e3d8 100644 --- a/.github/workflows/build-docker.yml +++ b/.github/workflows/build-docker.yml @@ -34,13 +34,13 @@ jobs: - name: Build Backend Docker image run: | docker build --network=host -t jonafoll/backend:${{ github.sha }} ./backend - docker tag jonafoll/backend:${{ github.sha }} your-username/backend:latest + docker tag jonafoll/backend:${{ github.sha }} jonafoll/backend:latest # Step 5: Build the Frontend Docker image - name: Build Frontend Docker image run: | - docker build --network=host -t your-username/frontend:${{ github.sha }} ./frontend - docker tag jonafoll/frontend:${{ github.sha }} your-username/frontend:latest + docker build --network=host -t jonafoll/frontend:${{ github.sha }} ./frontend + docker tag jonafoll/frontend:${{ github.sha }} jonafoll/frontend:latest # Step 6: Push the Backend Docker image to Docker Hub - name: Push Backend Docker image to Docker Hub