Commit 28035a8
Changed files (1)
.github
workflows
.github/workflows/npm-publish.yml
@@ -15,18 +15,12 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- - run: npm ci
- - run: npm run build
-
- publish-npm:
- needs: build
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - uses: actions/setup-node@v4
- with:
- node-version: 20
- registry-url: https://registry.npmjs.org/
- - run: npm publish
+ registry-url: https://registry.npmjs.org
+ - name: Install dependencies
+ run: npm ci
+ - name: Build
+ run: npm run build
+ - name: Publish package to npm
+ run: npm publish
env:
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
+ NODE_AUTH_TOKEN: ${{ secrets.npm_token }}