Skip to content

v1.0.3

v1.0.3 #38

Workflow file for this run

name: Release
on:
workflow_dispatch: {}
release:
types: [published]
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
always-auth: true
- name: Install dependencies
run: yarn
- name: Build
run: yarn run build
- name: Release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn publish --verbose