Skip to content

v1.0.5

v1.0.5 #13

Workflow file for this run

name: NPM publish beta
on:
release:
types: [published]
jobs:
build:
if: "github.event.release.prerelease"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies and build 🔧
run: npm ci && npm run build
- name: Publish package on NPM - Beta 📦
run: npm publish --tag beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}