Skip to content

Commit 555f998

Browse files
fix git workflow
1 parent c62f887 commit 555f998

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

16-
- name: Setup Node.js
17-
uses: actions/setup-node@v3
16+
- name: Setup Bun
17+
uses: oven-sh/setup-bun@v2
1818
with:
19-
node-version: "18"
19+
bun-version: latest
2020

2121
- name: Install Dependencies
22-
run: npm ci
22+
run: bun install
2323

2424
- name: Create Release Pull Request or Publish
2525
uses: changesets/action@v1
2626
with:
27-
publish: npm run publish-packages
27+
publish: bun run publish-packages
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)