Skip to content

v0.4.16

v0.4.16 #19

Workflow file for this run

name: NPM Publish
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '14.x'
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: yarn build
- run: |
cd packages
find . -maxdepth 1 -mindepth 1 -type d \( -path ./examples -o -path ./scripts \) -prune -o -type d -exec bash -c "cd '{}' && npm publish --access public" \;
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}