diff --git a/.github/workflows/api-docker-image.yml b/.github/workflows/api-docker-image.yml index fbf4cf5..484444d 100644 --- a/.github/workflows/api-docker-image.yml +++ b/.github/workflows/api-docker-image.yml @@ -1,4 +1,4 @@ -name: Publish Docker Image +name: Publish API Docker Image on: push: @@ -18,7 +18,7 @@ env: jobs: - build: + build-api: runs-on: ubuntu-latest permissions: contents: read diff --git a/.github/workflows/ui-docker-image.yml b/.github/workflows/ui-docker-image.yml index 008f841..e85404d 100644 --- a/.github/workflows/ui-docker-image.yml +++ b/.github/workflows/ui-docker-image.yml @@ -1,4 +1,4 @@ -name: Publish Docker Image +name: Publish UI Docker Image on: push: @@ -17,7 +17,7 @@ env: jobs: - build: + build-ui: runs-on: ubuntu-latest permissions: contents: read @@ -65,8 +65,8 @@ jobs: id: build-and-push uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: - context: ./barkmanUI - file: ./barkmanUI/release.Dockerfile + context: ./barkmanui + file: ./barkmanui/release.Dockerfile push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}