mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-13 12:55:19 +00:00
switch to using arm64 runners on arm64 build
This commit is contained in:
parent
d37a969930
commit
d513f93a39
1 changed files with 7 additions and 4 deletions
11
.github/workflows/staging-ghcr-public.yml
vendored
11
.github/workflows/staging-ghcr-public.yml
vendored
|
|
@ -10,16 +10,19 @@ env:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: macos-13
|
||||
runs-on: ${{ matrix.runs-on}}
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
id-token: write
|
||||
strategy:
|
||||
matrix:
|
||||
platform:
|
||||
- linux/amd64
|
||||
- linux/arm64
|
||||
platform: [linux/amd64, linux/arm64]
|
||||
include:
|
||||
- platform: linux/amd64
|
||||
runs-on: ubuntu-latest
|
||||
- platform: linux/arm64
|
||||
runs-on: ubuntu-24.04-arm
|
||||
|
||||
steps:
|
||||
- name: Prepare
|
||||
|
|
|
|||
Loading…
Reference in a new issue