Skip to content

chore: release v0.0.0-beta.14 #14

chore: release v0.0.0-beta.14

chore: release v0.0.0-beta.14 #14

Workflow file for this run

name: release
on:
push:
tags:
- '*-beta.*'
jobs:
publish_beta:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
registry-url: 'https://registry.npmjs.org'
cache: npm
- name: Install dependencies
run: npm ci
- name: Test
run: npm run test
- name: Compile
run: npm run build
- name: Publish
run: |
npm publish --tag beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}