fix: update to new docker build

This commit is contained in:
2024-02-17 17:11:34 +01:00
parent 6b8e517e3c
commit c2853af6b4

View File

@@ -29,10 +29,18 @@ jobs:
username: ${{ secrets.REGISTRY_USER }} username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASS }} password: ${{ secrets.REGISTRY_PASS }}
- -
name: Build and push signal-event-dispatcher name: Build and push event-dispatcher
uses: docker/build-push-action@v3 uses: docker/build-push-action@v3
with: with:
context: . context: ./server/
platforms: linux/amd64 platforms: linux/amd64
push: true push: true
tags: "${{ secrets.REGISTRY }}/athq/event-dispatcher:latest" tags: "${{ secrets.REGISTRY }}/athq/event-dispatcher:latest"
-
name: Build and push event-dispatcher
uses: docker/build-push-action@v3
with:
context: ./client/
platforms: linux/amd64
push: true
tags: "${{ secrets.REGISTRY }}/athq/event-dispatcher-worker:latest"