Skip to content

Merge pull request #13 from aexol-studio/Update #33

Merge pull request #13 from aexol-studio/Update

Merge pull request #13 from aexol-studio/Update #33

Workflow file for this run

name: Node.js Package release
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run build
- run: npm publish --tag latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}