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 5338cf0 commit 210c331Copy full SHA for 210c331
.github/workflows/ci.yml
@@ -13,6 +13,7 @@ jobs:
13
- uses: actions/setup-node@v3
14
with:
15
node-version: 16
16
+ registry-url: 'https://registry.npmjs.org'
17
18
- run: npm -v
19
- run: npm install
@@ -72,10 +73,12 @@ jobs:
72
73
74
${{ steps.changelog.outputs.changelog }}
75
- - uses: JS-DevTools/npm-publish@v1
76
- with:
77
- token: ${{ secrets.NPM_TOKEN }}
78
- package: ./core/package.json
+ - run: npm publish
+ name: 📦 react-code-preview-layout publish to NPM
+ continue-on-error: true
79
+ working-directory: core
80
+ env:
81
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
82
83
outputs:
84
successful: ${{steps.create_tag.outputs.successful }}
0 commit comments