Skip to content

v1.1.0

v1.1.0 #9

Workflow file for this run

name: Publish to NPM
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
# Publish to Github Modules
- uses: actions/setup-node@v2
with:
node-version: 18
registry-url: 'https://npm.pkg.github.com/'
- run: yarn
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}