-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use QEMU action for multi-arch builds
- Loading branch information
1 parent
c690d4c
commit b5c0cc1
Showing
1 changed file
with
4 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,9 @@ jobs: | |
- name: Checkout (GitHub) | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up QEMU for multi-architecture builds | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
|
@@ -46,6 +49,7 @@ jobs: | |
uses: devcontainers/[email protected] | ||
env: | ||
RUBY_VERSION: ${{ matrix.RUBY_VERSION }} | ||
BUILDX_NO_DEFAULT_ATTESTATIONS: true | ||
with: | ||
imageName: ghcr.io/rails/devcontainer/images/ruby | ||
cacheFrom: ghcr.io/rails/devcontainer/images/ruby | ||
|