Skip to content

Commit

Permalink
Update build-and-publish.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
th0th committed Jan 24, 2023
1 parent d4245f7 commit 9dcc4ca
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: ./backend
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand All @@ -46,6 +47,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Log in to the container registry
uses: docker/login-action@v2
with:
Expand All @@ -70,6 +77,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: ./frontend
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 9dcc4ca

Please sign in to comment.