Skip to content

chore: version bump to v0.2.1 #43

chore: version bump to v0.2.1

chore: version bump to v0.2.1 #43

Workflow file for this run

name: Publish
on:
push:
tags:
- v*
jobs:
publish:
# prevents this action from running on forks
if: github.repository == 'zce/velite'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
registry-url: https://registry.npmjs.org/
node-version: lts/*
cache: pnpm
- run: pnpm install
- run: pnpm build
- run: pnpm publish --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}