Skip to content

Commit 1cf330a

Browse files
committed
Intall qemu and setup buildx for multiplatform builds
1 parent 27265a8 commit 1cf330a

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/20-devcontainer.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,19 @@ on:
88

99
jobs:
1010
build-and-push:
11-
strategy:
12-
matrix:
13-
os: [ubuntu-24.04, ubuntu-24.04-arm]
14-
runs-on: ${{ matrix.os }}
11+
runs-on: ubuntu-latest
1512
steps:
1613
- name: Checkout
1714
uses: actions/checkout@v4
1815

16+
- name: Set up QEMU for multi-architecture builds
17+
uses: docker/setup-qemu-action@v3
18+
19+
- name: Setup Docker buildx for multi-architecture builds
20+
uses: docker/setup-buildx-action@v3
21+
with:
22+
use: true
23+
1924
- name: Login to GitHub Container Registry
2025
uses: docker/login-action@v3
2126
with:

0 commit comments

Comments
 (0)