We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83a7c11 commit 5111621Copy full SHA for 5111621
2 files changed
.github/workflows/publish.yml
@@ -13,14 +13,12 @@ jobs:
13
with:
14
node-version: '14.x'
15
registry-url: 'https://registry.npmjs.org'
16
-
17
- - uses: ferluisxd/create-npmrc@3
18
- with:
19
- auth_token: ${{ secrets.NPM_TOKEN }}
20
- run: npm install
21
- run: npm run test
22
- name: Semantic Release
23
run: npm run release
24
env:
25
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
+ - run: npm publish --access public
+ env:
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
.releaserc.json
@@ -21,7 +21,9 @@
}
],
- "@semantic-release/npm",
+ ["@semantic-release/npm", {
+ "npmPublish": false
+ }],
27
"@semantic-release/github",
28
[
29
"@semantic-release/git",
0 commit comments