Skip to content

Commit 0f8b684

Browse files
author
ivan2214
committed
fix: remove setup-node, use bun for publish job
1 parent c614515 commit 0f8b684

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ on:
55
branches:
66
- main
77
paths:
8-
- 'packages/plugin/**'
9-
- '.changeset/**'
10-
- '.github/workflows/release.yml'
8+
- "packages/plugin/**"
9+
- ".changeset/**"
10+
- ".github/workflows/release.yml"
1111

1212
permissions:
1313
contents: write
@@ -55,16 +55,16 @@ jobs:
5555
- name: Checkout
5656
uses: actions/checkout@v4
5757

58-
- name: Setup Node.js
59-
uses: actions/setup-node@v4
58+
- name: Setup Bun
59+
uses: oven-sh/setup-bun@v2
6060
with:
61-
node-version: '20'
61+
bun-version: latest
6262

6363
- name: Install dependencies
64-
run: npm ci
64+
run: bun install --frozen-lockfile
6565

6666
- name: Build plugin
67-
run: npm turbo run build --filter=better-auth-mercadopago
67+
run: bun turbo run build --filter=better-auth-mercadopago
6868

6969
- name: Publish to npm
7070
run: |

0 commit comments

Comments
 (0)