Skip to content

chore: release v0.0.1-beta.1 #2

chore: release v0.0.1-beta.1

chore: release v0.0.1-beta.1 #2

Workflow file for this run

name: 🎉 Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint
- name: Build
run: pnpm run build
- name: Test
run: pnpm run test
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.PERSONAL_ACCESS_TOKEN}}