From 1c3208dc3adc7917b3c37e0457488a4dd7c02fad Mon Sep 17 00:00:00 2001 From: Julius Marminge Date: Thu, 16 Apr 2026 19:40:38 -0700 Subject: [PATCH] ci(release): install deps before finalize version bump The finalize job runs scripts/update-release-package-versions.ts, which imports the workspace package @t3tools/shared. Without bun install, node_modules has no symlink for that package and Node 24 fails with ERR_MODULE_NOT_FOUND. Install dependencies before the script runs, in line with the other jobs in this workflow. Made-with: Cursor --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 857d951d75..3f61235ae8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -474,6 +474,9 @@ jobs: with: node-version-file: package.json + - name: Install dependencies + run: bun install --frozen-lockfile + - id: update_versions name: Update version strings env: