2023-06-22 12:14:02 +08:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
2023-06-25 16:33:34 +08:00
|
|
|
permissions:
|
2023-06-25 16:55:45 +08:00
|
|
|
contents: write
|
2023-06-25 16:33:34 +08:00
|
|
|
id-token: write
|
|
|
|
|
2023-06-22 12:14:02 +08:00
|
|
|
steps:
|
2023-09-11 16:38:31 +08:00
|
|
|
- uses: actions/checkout@v4
|
2023-06-22 12:14:02 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Install pnpm
|
|
|
|
uses: pnpm/action-setup@v2
|
|
|
|
|
|
|
|
- name: Set node
|
2023-10-30 16:23:13 +08:00
|
|
|
uses: actions/setup-node@v4
|
2023-06-22 12:14:02 +08:00
|
|
|
with:
|
|
|
|
node-version: lts/*
|
|
|
|
cache: pnpm
|
|
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
|
|
|
|
- run: npx changelogithub
|
|
|
|
continue-on-error: true
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: pnpm i
|
|
|
|
|
2023-06-25 17:16:09 +08:00
|
|
|
- name: PNPM build
|
|
|
|
run: pnpm run build
|
|
|
|
|
2023-06-22 12:14:02 +08:00
|
|
|
- name: Publish to NPM
|
2023-06-25 17:12:45 +08:00
|
|
|
run: pnpm -r publish --access public --no-git-checks
|
2023-06-22 12:14:02 +08:00
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
2023-06-25 17:12:45 +08:00
|
|
|
NPM_CONFIG_PROVENANCE: true
|