Skip to content

v3.0.2

v3.0.2 #18

Workflow file for this run

name: Publish
on:
release:
types: [ published ]
jobs:
publish-npm:
name: Publish package to npmjs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
scope: '@aperture_finance'
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}