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 97e2267 commit 3a98b8dCopy full SHA for 3a98b8d
1 file changed
.github/workflows/publish.yml
@@ -25,8 +25,10 @@ jobs:
25
node-version-file: .nvmrc
26
registry-url: 'https://registry.npmjs.org' # required for trusted publishing
27
28
- - run: |
29
- npm i -g npm@latest
30
- npm --version
31
- run: npm i
32
- - run: npm run deploy
+ - name: Build
+ run: npm run build
+
+ # 🔑 Use npm@latest directly for publish
33
+ - name: Publish (trusted publishing)
34
+ run: npx -y npm@latest publish --provenance --access public --loglevel verbose
0 commit comments