From 54e2eef182906bd5631313b5920c85f3d810ceb2 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Sat, 22 Aug 2026 20:44:26 -0400 Subject: [PATCH] ci: use bun 1.4.0 instead of canary for publish builds --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 834afdc9426..0ce8621ef72 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -91,7 +91,7 @@ jobs: - uses: ./.github/actions/setup-bun with: - bun-version: canary # Bun 1.4 until its stable release is published + bun-version: 1.4.0 - name: Setup git committer id: committer @@ -113,7 +113,7 @@ jobs: id: build run: ./packages/cli/script/build.ts ${{ (github.ref_name == 'beta' && '--sourcemaps') || '' }} env: - BUN_COMPILE_RELEASE: canary + BUN_COMPILE_RELEASE: bun-v1.4.0 OPENCODE_VERSION: ${{ needs.version.outputs.version }} OPENCODE_RELEASE: ${{ needs.version.outputs.release }} GH_REPO: ${{ needs.version.outputs.repo }}