From 885d705d555dcc46eb91868d4e1fae08d9f49d05 Mon Sep 17 00:00:00 2001 From: Ashcon Partovi Date: Wed, 24 Jan 2024 15:21:10 -0700 Subject: [PATCH] Fix `bun-types` version being incorrect --- .github/workflows/bun-release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/bun-release.yml b/.github/workflows/bun-release.yml index 3e9a46ebdc..f56a14b65b 100644 --- a/.github/workflows/bun-release.yml +++ b/.github/workflows/bun-release.yml @@ -111,9 +111,15 @@ jobs: with: node-version: latest - name: Setup Bun + if: ${{ env.BUN_VERSION != 'canary' }} uses: oven-sh/setup-bun@v1 with: bun-version: "1.0.21" + - name: Setup Bun + if: ${{ env.BUN_VERSION == 'canary' }} + uses: oven-sh/setup-bun@v1 + with: + bun-version: "canary" # Must be 'canary' so tag is correct - name: Install Dependencies run: bun install - name: Setup Tag