diff --git a/.github/workflows/docker-build-push-backend-container-on-tag.yml b/.github/workflows/docker-build-push-backend-container-on-tag.yml index db684bb62..7a33f54e6 100644 --- a/.github/workflows/docker-build-push-backend-container-on-tag.yml +++ b/.github/workflows/docker-build-push-backend-container-on-tag.yml @@ -1,4 +1,4 @@ -name: Build and Push Docker Images on Tagging +name: Build and Push Backend Images on Tagging on: push: @@ -22,7 +22,7 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} - - name: Api Server Docker Build and Push + - name: Backend Image Docker Build and Push uses: docker/build-push-action@v2 with: context: ./backend diff --git a/.github/workflows/docker-build-push-web-container-on-tag.yml b/.github/workflows/docker-build-push-web-container-on-tag.yml index da3337598..fbad07267 100644 --- a/.github/workflows/docker-build-push-web-container-on-tag.yml +++ b/.github/workflows/docker-build-push-web-container-on-tag.yml @@ -1,4 +1,4 @@ -name: Build and Push Docker Images on Tagging +name: Build and Push Web Images on Tagging on: push: @@ -22,7 +22,7 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} - - name: Web Server Docker Build and Push + - name: Web Image Docker Build and Push uses: docker/build-push-action@v2 with: context: ./web