Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit 9728554

Browse files
committed
fix(ci): add QEMU to release process
1 parent cacdf3b commit 9728554

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,18 @@ jobs:
1919
run: |-
2020
git config user.name "github-actions"
2121
git config user.email "[email protected]"
22+
- name: Set up QEMU
23+
uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 # v2.0.0
24+
with:
25+
platforms: arm64
26+
# NOTE: we need QEMU to build Layer against a different architecture (e.g., ARM)
27+
- name: Set up Docker Buildx
28+
id: builder
29+
uses: docker/setup-buildx-action@f03ac48505955848960e80bbb68046aa35c7b9e7 # v2.4.1
30+
with:
31+
install: true
32+
driver: docker
33+
platforms: linux/amd64,linux/arm64
2234
- name: Install dependencies
2335
run: yarn install --check-files --frozen-lockfile
2436
- name: give user docker permission so we can run tests

0 commit comments

Comments
 (0)