Skip to content

Commit d4acf80

Browse files
committed
update
1 parent 34ccd45 commit d4acf80

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/release.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,18 @@ jobs:
2020
with:
2121
node-version: 20.x
2222

23+
- name: Setup bun
24+
uses: oven-sh/setup-bun@v1
25+
2326
- name: Install Dependencies
24-
run: yarn
27+
run: bun
2528

2629
- name: Create Release Pull Request or Publish to npm
2730
id: changesets
2831
uses: changesets/action@v1
2932
with:
3033
# This expects you to have a script called release which does a build for your packages and calls changeset publish
31-
publish: yarn release
34+
publish: bun run release
3235
env:
3336
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
3437
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"build": "turbo build",
66
"dev": "turbo dev",
77
"lint": "turbo lint",
8-
"format": "prettier --write \"**/*.{ts,tsx,md}\""
8+
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
9+
"release": "bun run build && changeset publish"
910
},
1011
"devDependencies": {
1112
"@changesets/cli": "^2.27.1",

0 commit comments

Comments
 (0)