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