Skip to content

feat: add optional callback function that can be used to perform extr… #7

feat: add optional callback function that can be used to perform extr…

feat: add optional callback function that can be used to perform extr… #7

Workflow file for this run

name: Release
on:
push:
branches: [master]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run build
run: yarn build
- name: Run release
run: yarn release
env:
GH_TOKEN: ${{secrets.GH_TOKEN}}
NPM_TOKEN: ${{secrets.NPM_TOKEN}}