1 parent c614515 commit 0f8b684Copy full SHA for 0f8b684
1 file changed
.github/workflows/release.yml
@@ -5,9 +5,9 @@ on:
5
branches:
6
- main
7
paths:
8
- - 'packages/plugin/**'
9
- - '.changeset/**'
10
- - '.github/workflows/release.yml'
+ - "packages/plugin/**"
+ - ".changeset/**"
+ - ".github/workflows/release.yml"
11
12
permissions:
13
contents: write
@@ -55,16 +55,16 @@ jobs:
55
- name: Checkout
56
uses: actions/checkout@v4
57
58
- - name: Setup Node.js
59
- uses: actions/setup-node@v4
+ - name: Setup Bun
+ uses: oven-sh/setup-bun@v2
60
with:
61
- node-version: '20'
+ bun-version: latest
62
63
- name: Install dependencies
64
- run: npm ci
+ run: bun install --frozen-lockfile
65
66
- name: Build plugin
67
- run: npm turbo run build --filter=better-auth-mercadopago
+ run: bun turbo run build --filter=better-auth-mercadopago
68
69
- name: Publish to npm
70
run: |
0 commit comments