Skip to content

0.1.4

0.1.4 #11

Workflow file for this run

name: Publish to NPM
on:
release:
types: [created]
jobs:
npm_publish:
runs-on: ubuntu-20.04
steps:
- name: 📚 Checkout
uses: actions/checkout@v2
- name: 🟢 Setup Node
uses: actions/setup-node@v2
with:
node-version: 14
registry-url: "https://registry.npmjs.org"
- name: 🔧 Install dependencies and build
run: npm install && npm run build
- name: 📦 Publish package on NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}