Skip to content

Commit

Permalink
Start build multi-arch images
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitades committed Sep 22, 2023
1 parent d613ef2 commit 9e527d2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/master_merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
with:
platforms: linux/arm64
platforms: linux/arm64,linux/amd64
- uses: docker/login-action@v2
with:
username: nikitades
Expand All @@ -84,7 +84,7 @@ jobs:
cache-to: type=gha,mode=max,scope=backend.api
context: apps/backend
file: apps/backend/api.Dockerfile
platforms: linux/arm64
platforms: linux/arm64,linux/amd64

build-tgn-image:
runs-on: ubuntu-latest
Expand All @@ -94,7 +94,7 @@ jobs:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
with:
platforms: linux/arm64
platforms: linux/arm64,linux/amd64
- uses: docker/login-action@v2
with:
username: nikitades
Expand All @@ -109,7 +109,7 @@ jobs:
cache-to: type=gha,mode=max,scope=backend.tgn
context: apps/backend
file: apps/backend/tgn.Dockerfile
platforms: linux/arm64
platforms: linux/arm64,linux/amd64

build-website-image:
runs-on: ubuntu-latest
Expand All @@ -123,7 +123,7 @@ jobs:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
with:
platforms: linux/arm64
platforms: linux/arm64,linux/amd64
- uses: docker/login-action@v2
with:
username: nikitades
Expand All @@ -137,7 +137,7 @@ jobs:
cache-from: type=gha,scope=website
cache-to: type=gha,mode=max,scope=website
context: apps/website
platforms: linux/arm64
platforms: linux/arm64,linux/amd64

build-keycloak-image:
runs-on: ubuntu-latest
Expand All @@ -151,7 +151,7 @@ jobs:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
with:
platforms: linux/arm64
platforms: linux/arm64,linux/amd64
- uses: docker/login-action@v2
with:
username: nikitades
Expand All @@ -165,7 +165,7 @@ jobs:
cache-from: type=gha,scope=keycloak
cache-to: type=gha,mode=max,scope=keycloak
context: apps/keycloak
platforms: linux/arm64
platforms: linux/arm64,linux/amd64

deploy:
name: Deploy
Expand Down

0 comments on commit 9e527d2

Please sign in to comment.