mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 12:25:22 +00:00
try out new arm64 hosted runner
This commit is contained in:
parent
27dde3a902
commit
d1ef80d39f
1 changed files with 9 additions and 4 deletions
13
.github/workflows/ghcr-publish.yml
vendored
13
.github/workflows/ghcr-publish.yml
vendored
|
|
@ -14,7 +14,7 @@ env:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ matrix.runs-on}}
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
|
|
@ -23,9 +23,14 @@ jobs:
|
|||
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