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 7006002 commit 8522dafCopy full SHA for 8522daf
.github/workflows/ci.yml
@@ -31,6 +31,7 @@ jobs:
31
- uses: actions/setup-node@v3
32
with:
33
node-version: 16
34
+ registry-url: 'https://registry.npmjs.org'
35
36
- run: npm install --unsafe-perm
37
- run: npm run hoist
@@ -94,11 +95,12 @@ jobs:
94
95
# - run: npm install @jsdevtools/npm-publish -g
96
# - run: npm-publish --token="${{ secrets.NPM_TOKEN }}" ./core/package.json
97
- - name: 📦 @wcj/code-image publish to NPM
98
- uses: JS-DevTools/npm-publish@v1
99
- with:
100
- token: ${{ secrets.NPM_TOKEN }}
101
- package: ./core/package.json
+
+ - run: npm publish --access public
+ name: 📦 @wcj/code-image publish to NPM
+ continue-on-error: true
102
+ env:
103
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
104
105
106
outputs:
0 commit comments