Skip to content

build: publish v0.1.1 #3

build: publish v0.1.1

build: publish v0.1.1 #3

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Tools
uses: ./.github/actions/install-tools
- name: Create GitHub Release
run: pnpx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Publish to NPM
run: pnpm run release:publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}