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 d37a969 commit d513f93Copy full SHA for d513f93
.github/workflows/staging-ghcr-public.yml
@@ -10,16 +10,19 @@ env:
10
11
jobs:
12
build:
13
- runs-on: macos-13
+ runs-on: ${{ matrix.runs-on}}
14
permissions:
15
contents: read
16
packages: write
17
id-token: write
18
strategy:
19
matrix:
20
- platform:
21
- - linux/amd64
22
- - linux/arm64
+ platform: [linux/amd64, linux/arm64]
+ include:
+ - platform: linux/amd64
23
+ runs-on: ubuntu-latest
24
+ - platform: linux/arm64
25
+ runs-on: ubuntu-24.04-arm
26
27
steps:
28
- name: Prepare
0 commit comments