We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27265a8 commit 1cf330aCopy full SHA for 1cf330a
1 file changed
.github/workflows/20-devcontainer.yml
@@ -8,14 +8,19 @@ on:
8
9
jobs:
10
build-and-push:
11
- strategy:
12
- matrix:
13
- os: [ubuntu-24.04, ubuntu-24.04-arm]
14
- runs-on: ${{ matrix.os }}
+ runs-on: ubuntu-latest
15
steps:
16
- name: Checkout
17
uses: actions/checkout@v4
18
+ - name: Set up QEMU for multi-architecture builds
+ uses: docker/setup-qemu-action@v3
+
19
+ - name: Setup Docker buildx for multi-architecture builds
20
+ uses: docker/setup-buildx-action@v3
21
+ with:
22
+ use: true
23
24
- name: Login to GitHub Container Registry
25
uses: docker/login-action@v3
26
with:
0 commit comments