Skip to content

chore: release v0.8.0 #9

chore: release v0.8.0

chore: release v0.8.0 #9

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
run_install: true
# after pnpm
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18.12
registry-url: https://registry.npmjs.org/
cache: pnpm
# https://docs.github.com/actions/publishing-packages/publishing-nodejs-packages
- run: pnpm publish:ci
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}