mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
ci(release): install unzip on ARM Linux runners for setup-bun
The ubuntu-*-arm-32-cores runner images don't ship with unzip, so oven-sh/setup-bun fails when extracting the bun release zip. x86 runner images include it, which is why only the aarch64-unknown-linux compile jobs failed. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
b7c3ce89ff
commit
d57b8018af
1 changed files with 4 additions and 0 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
|
@ -43,6 +43,10 @@ jobs:
|
|||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Install unzip (ARM Linux runner image lacks it; setup-bun needs it)
|
||||
if: runner.os == 'Linux' && runner.arch == 'ARM64'
|
||||
run: sudo apt-get update && sudo apt-get install -y unzip
|
||||
|
||||
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
|
||||
with:
|
||||
no-cache: true
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue