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 5478154 commit 9f677e1Copy full SHA for 9f677e1
.github/workflows/publish_to_npm.yml
@@ -12,12 +12,20 @@ jobs:
12
steps:
13
- uses: actions/checkout@v3
14
- uses: oven-sh/setup-bun@v1
15
+ - uses: pnpm/action-setup@v2
16
+ with:
17
+ version: 8
18
+ - uses: actions/setup-node@v3
19
20
+ node-version: 20.x
21
+ registry-url: "https://registry.npmjs.org"
22
+ cache: "pnpm"
23
24
- run: bun install
25
- run: bun run build
26
27
- name: Publish to NPM
- run: bunx pnpm publish --access public --no-git-checks
28
+ run: pnpm publish --access public --no-git-checks
29
env:
30
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
31
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments