diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 854dc89..e58ff20 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -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 }}