Skip to content

Commit

Permalink
Fix Typo with local-mail server
Browse files Browse the repository at this point in the history
  • Loading branch information
Podginator committed Jan 29, 2025
1 parent 26d7b0e commit 1ec3b9e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-self-host-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,40 +40,40 @@ jobs:
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/omnivore-app/backend:latest,ghcr.io/omnivore-app/backend:${{ github.sha }}
tags: ghcr.io/omnivore-app/sh-backend:latest,ghcr.io/omnivore-app/sh-backend:${{ github.sha }}
file: packages/api/Dockerfile
- name: Build and push content-fetch
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/omnivore-app/content-fetch:latest,ghcr.io/omnivore-app/content-fetch:${{ github.sha }}
tags: ghcr.io/omnivore-app/sh-content-fetch:latest,ghcr.io/omnivore-app/sh-content-fetch:${{ github.sha }}
file: packages/content-fetch/Dockerfile
- 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/queue-processor:latest,ghcr.io/omnivore-app/queue-processor:${{ github.sha }}
tags: ghcr.io/omnivore-app/sh-queue-processor:latest,ghcr.io/omnivore-app/sh-queue-processor:${{ github.sha }}
file: packages/api/queue-processor/Dockerfile
- name: Build and push migrate
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/omnivore-app/migrate:latest,ghcr.io/omnivore-app/migrate:${{ github.sha }}
tags: ghcr.io/omnivore-app/sh-migrate:latest,ghcr.io/omnivore-app/sh-migrate:${{ github.sha }}
file: packages/db/Dockerfile
- name: Build and push image-proxy
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/omnivore-app/image-proxy:latest,ghcr.io/omnivore-app/image-proxy:${{ github.sha }}
tags: ghcr.io/omnivore-app/sh-image-proxy:latest,ghcr.io/omnivore-app/sh-image-proxy:${{ github.sha }}
file: imageproxy/Dockerfile
- name: Build and push local-mail-watcher
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/omnivore-app/local-mail-watcher:latest,ghcr.io/omnivore-app/local-mail-watcher:${{ github.sha }}
tags: ghcr.io/omnivore-app/sh-local-mail-watcher:latest,ghcr.io/omnivore-app/sh-local-mail-watcher:${{ github.sha }}
file: packages/local-mail-watcher/Dockerfile

0 comments on commit 1ec3b9e

Please sign in to comment.