Skip to content

1.0.104

1.0.104 #104

Workflow file for this run

name: Build
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: tsc
- run: node ./build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}