Skip to content

Create README.md

Create README.md #6

name: Publish to npm
on:
push:
branches:
- main
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm install
- name: Check if NPM_TOKEN is accessible
run: echo "NPM_TOKEN is set"
env:
NPM_TOKEN: ${{ secrets.SHEKHARDTU_NPM_TOKEN }}
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.SHEKHARDTU_NPM_TOKEN }}