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