We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d35708 commit 2012badCopy full SHA for 2012bad
1 file changed
.github/workflows/publish.yml
@@ -13,12 +13,21 @@ jobs:
13
runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v5
16
+
17
+ - uses: pnpm/action-setup@v4
18
+ with:
19
+ version: 9
20
21
- uses: actions/setup-node@v5
22
with:
23
node-version: 24
24
+ cache: pnpm
25
registry-url: "https://registry.npmjs.org"
- - run: npm ci
- - run: npm run build
- - run: npm publish
26
27
+ - run: pnpm install --frozen-lockfile
28
29
+ - run: pnpm build
30
31
+ - run: pnpm publish --no-git-checks --access public
32
env:
33
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments