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 d47b605 commit dc877e6Copy full SHA for dc877e6
.github/workflows/release.yml
@@ -32,10 +32,19 @@ jobs:
32
registry-url: 'https://registry.npmjs.org'
33
if: ${{ steps.release.outputs.release_created }}
34
35
- - run: npm ci
+ # Setup pnpm
36
+ - uses: pnpm/action-setup@v2
37
+ with:
38
+ version: latest
39
+ run_install: false
40
+ if: ${{ steps.release.outputs.release_created }}
41
+
42
+ - name: Install dependencies
43
+ run: pnpm install --frozen-lockfile
44
45
- - run: npm publish --provenance
46
+ - name: Publish to npm
47
+ run: pnpm publish --no-git-checks --provenance
48
env:
49
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
50
0 commit comments