Skip to content

Update v1 to v1.0.3 + Add important message in README.md #6

Update v1 to v1.0.3 + Add important message in README.md

Update v1 to v1.0.3 + Add important message in README.md #6

name: Publish 📦 to npmjs
on:
push:
tags:
- "v*.*.*"
jobs:
build-n-publish-to-npmjs:
name: Build and publish 📦 to npmjs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '8.x'
registry-url: 'https://registry.npmjs.com'
- run: npm i
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}