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 27dde3a commit d1ef80dCopy full SHA for d1ef80d
.github/workflows/ghcr-publish.yml
@@ -14,7 +14,7 @@ env:
14
15
jobs:
16
build:
17
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.runs-on}}
18
permissions:
19
contents: read
20
packages: write
@@ -23,9 +23,14 @@ jobs:
23
id-token: write
24
strategy:
25
matrix:
26
- platform:
27
- - linux/amd64
28
- - linux/arm64
+ platform: [linux/amd64, linux/arm64]
+ include:
+ - platform: linux/amd64
29
+ runs-on: ubuntu-latest
30
+ - platform: linux/arm64
31
+ runs-on: ubuntu-24.04-arm
32
+
33
34
35
steps:
36
- name: Prepare
0 commit comments