We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 067201e commit 7424c32Copy full SHA for 7424c32
.github/workflows/release.yml
@@ -11,11 +11,13 @@ jobs:
11
id-token: write
12
steps:
13
- uses: actions/checkout@v4
14
- - uses: actions/setup-node@v4
+ - uses: oven-sh/setup-bun@v2
15
with:
16
- node-version: "22.x"
+ bun-version: latest
17
registry-url: "https://registry.npmjs.org"
18
scope: "@vues3"
19
- - run: npm publish --provenance --access public
+ - run: bun install
20
+ - run: bun run build
21
+ - run: bun publish --access public
22
env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
23
+ BUN_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments