Skip to content

1.7 User Management functions #2

1.7 User Management functions

1.7 User Management functions #2

Workflow file for this run

name: Node.js Package
on:
release:
types: [created]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
registry-url: https://registry.npmjs.org/
- run: npm -g install webpack webpack-cli
- run: npm -g install rollup
- run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPMJS_TOKEN}}