From d39c2cb12fe2750906afe88bdbf4a0de45d99207 Mon Sep 17 00:00:00 2001 From: Thomas Rogers Date: Fri, 31 Jan 2025 17:46:41 +0100 Subject: [PATCH] Attempt to fix manifest error --- .../build-self-host-docker-images.yml | 42 ++++++++++--------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/.github/workflows/build-self-host-docker-images.yml b/.github/workflows/build-self-host-docker-images.yml index fdc3e641e..1604edfa4 100644 --- a/.github/workflows/build-self-host-docker-images.yml +++ b/.github/workflows/build-self-host-docker-images.yml @@ -35,26 +35,6 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - - name: Build and push backend - uses: docker/build-push-action@v6 - with: - platforms: linux/amd64,linux/arm64 - push: true - tags: ghcr.io/omnivore-app/sh-backend:latest,ghcr.io/omnivore-app/sh-backend:${{ github.sha }} - file: packages/api/Dockerfile - cache-from: type=registry,ref=ghcr.io/omnivore-app/sh-backend:${{ github.sha }} - cache-to: type=registry,ref=ghcr.io/omnivore-app/sh-backend:${{ github.sha }},mode=max - - - name: Build and push queue-processor - uses: docker/build-push-action@v6 - with: - platforms: linux/amd64,linux/arm64 - push: true - tags: ghcr.io/omnivore-app/sh-queue-processor:latest,ghcr.io/omnivore-app/sh-queue-processor:${{ github.sha }} - file: packages/api/queue-processor/Dockerfile - cache-from: type=registry,ref=ghcr.io/omnivore-app/sh-queue-processor:${{ github.sha }} - cache-to: type=registry,ref=ghcr.io/omnivore-app/sh-queue-processor:${{ github.sha }},mode=max - - name: Build and push image-proxy uses: docker/build-push-action@v6 with: @@ -96,4 +76,26 @@ jobs: cache-from: type=registry,ref=ghcr.io/omnivore-app/sh-local-mail-watcher:${{ github.sha }} cache-to: type=registry,ref=ghcr.io/omnivore-app/sh-local-mail-watcher:${{ github.sha }},mode=max + - name: Build and push backend + uses: docker/build-push-action@v6 + with: + platforms: linux/amd64,linux/arm64 + push: true + tags: ghcr.io/omnivore-app/sh-backend:latest,ghcr.io/omnivore-app/sh-backend:${{ github.sha }} + file: packages/api/Dockerfile + cache-from: type=registry,ref=ghcr.io/omnivore-app/sh-backend:${{ github.sha }} + cache-to: type=registry,ref=ghcr.io/omnivore-app/sh-backend:${{ github.sha }},mode=max + + - name: Build and push queue-processor + uses: docker/build-push-action@v6 + with: + platforms: linux/amd64,linux/arm64 + push: true + tags: ghcr.io/omnivore-app/sh-queue-processor:latest,ghcr.io/omnivore-app/sh-queue-processor:${{ github.sha }} + file: packages/api/queue-processor/Dockerfile + cache-from: type=registry,ref=ghcr.io/omnivore-app/sh-queue-processor:${{ github.sha }} + cache-to: type=registry,ref=ghcr.io/omnivore-app/sh-queue-processor:${{ github.sha }},mode=max + + +