Skip to content

Publish Package to npmjs #39

Publish Package to npmjs

Publish Package to npmjs #39

Workflow file for this run

# Copyright (c) 2023 Sanjib Kumar Sen <[email protected]>
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
name: Publish Package to npmjs
on:
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: latest
registry-url: https://registry.npmjs.org
- run: npm ci
- run: npm run build && cp README.md dist
- run: cd dist && npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}