Skip to content

Merge branch 'hotfix/10.0.1'. #17

Merge branch 'hotfix/10.0.1'.

Merge branch 'hotfix/10.0.1'. #17

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Publish to NPM
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16
- run: yarn install
- run: yarn run build
- run: yarn run test
env:
APS_BUCKET: ${{secrets.APS_BUCKET}}
APS_CLIENT_ID: ${{secrets.APS_CLIENT_ID}}
APS_CLIENT_SECRET: ${{secrets.APS_CLIENT_SECRET}}
APS_MODEL_URN: ${{secrets.APS_MODEL_URN}}
- run: yarn run docs
publish:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: yarn run build
- run: yarn run docs
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}