Skip to content

Commit 78c44e7

Browse files
committed
modified: .github/workflows/release.yml
1 parent b41ba52 commit 78c44e7

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,22 @@ jobs:
1111
id-token: write
1212
steps:
1313
- uses: actions/checkout@v4
14-
- uses: actions/setup-node@v4
15-
with:
16-
node-version: latest
17-
registry-url: "https://registry.npmjs.org"
18-
scope: "@vues3"
1914
- uses: oven-sh/setup-bun@v2
20-
with:
21-
bun-version: latest
22-
# registry-url: "https://registry.npmjs.org"
23-
# scope: "@vues3"
24-
- run: bun install
25-
- run: bun run build
15+
# with:
16+
# bun-version: latest
17+
# registry-url: "https://registry.npmjs.org"
18+
# scope: "@vues3"
19+
# - run: bun install
20+
# - run: bun run build
2621
# - run: bun publish --access public
2722
# env:
2823
# BUN_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
24+
- uses: actions/setup-node@v4
25+
with:
26+
node-version: "20.x"
27+
registry-url: "https://registry.npmjs.org"
28+
- run: npm ci
29+
- run: bun run build
2930
- run: npm publish --provenance --access public
3031
env:
31-
BUN_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
32+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)