Skip to content

fix: third time's the charm #4

fix: third time's the charm

fix: third time's the charm #4

Workflow file for this run

name: Release
on:
push:
tags:
- v*
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run : npm ci --ignore-scripts
- run : npm run prepare
- name: Publish to npm
run : |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
npm publish --ignore-scripts
env :
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} --access=public