Skip to content

v0.0.7

v0.0.7 #29

Workflow file for this run

name: Publish Release to Registry
on:
release:
types: [published]
jobs:
npm_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- run: corepack enable
- run: yarn set version stable
- run: yarn
- run: whoami && node -v && ls -lah
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPMJS_PUBLISH_TOKEN }}" > .npmrc
- run: npm --no-git-tag-version version ${{ github.event.release.tag_name }}
- run: ls -lah ./
- run: npm publish --access public