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:
Bryan Helmkamp 2026-04-27 10:15:46 -07:00
parent b7c3ce89ff
commit d57b8018af
No known key found for this signature in database

View file

@ -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