Merge pull request #18 from lobehub/chore/add-vidol-og #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release CI | |
on: | |
push: | |
branches: | |
- master | |
- alpha | |
- beta | |
- rc | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install deps | |
run: bun i | |
# npm 8 和 9 会在 `npm version` 时执行依赖树命令,进而报错退出 | |
# Refs: https://github.com/semantic-release/npm/issues/540 | |
- name: Setup npm 7 | |
run: npm i -g npm@7 --registry=https://registry.npmjs.org | |
- name: Release | |
run: bun run release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |