From d9e1da5031a5343b01d304122081a6b64d055c95 Mon Sep 17 00:00:00 2001 From: Calum Pinder Date: Wed, 17 Jul 2024 08:42:33 +0100 Subject: [PATCH] Fix docker build commands --- .github/workflows/ci-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }}