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.
2 parents cf3fc49 + 290540a commit 2b66a54Copy full SHA for 2b66a54
.github/workflows/image.yml
@@ -14,13 +14,12 @@ jobs:
14
image:
15
strategy:
16
matrix:
17
- arch: [amd64, arm64]
18
- runs-on: ubuntu-latest
+ include:
+ - {arch: amd64, os: ubuntu-latest}
19
+ - {arch: arm64, os: ubuntu-24.04-arm}
20
+ runs-on: ${{ matrix.os }}
21
steps:
22
- uses: actions/checkout@v3
- - name: enable cross build
- run: docker run --rm --privileged tonistiigi/binfmt --install arm64
23
- if: matrix.arch == 'arm64'
24
- name: login
25
run: docker login --username '${{ github.actor }}' --password-stdin ghcr.io <<< '${{ secrets.GITHUB_TOKEN }}'
26
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
0 commit comments