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 790bd2d commit ebdc8a3Copy full SHA for ebdc8a3
.github/workflows/docker-publish.yml
@@ -32,7 +32,7 @@ on:
32
jobs:
33
# Separate job for native builds vs emulated builds
34
build_native:
35
- runs-on: ${{ matrix.arch == 'arm64' && 'macos-26' || 'ubuntu-latest' }}
+ runs-on: ubuntu-latest
36
permissions:
37
contents: read
38
packages: write
@@ -53,8 +53,8 @@ jobs:
53
- name: Set up Docker Buildx
54
uses: docker/setup-buildx-action@v3
55
56
- - name: Set up QEMU (fallback for ARM64 if native runners unavailable)
57
- if: matrix.arch == 'arm64' && runner.arch != 'ARM64'
+ - name: Set up QEMU for cross-compilation
+ if: matrix.arch == 'arm64'
58
uses: docker/setup-qemu-action@v3
59
with:
60
platforms: arm64
0 commit comments