Skip to content

Release 0.2.0

Release 0.2.0 #1

Workflow file for this run

name: Publish Package
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab #v3.5.2
- name: Set up Node.js
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c #v3.6
with:
node-version: 18.x
registry-url: 'https://npm.pkg.github.com'
- name: Install dependencies and build with builder bob
run: yarn install --frozen-lockfile
- name: Publish Package
run: yarn publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}