Merge pull request #178 from lobehub/platform-optimize #113
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: | |
- main | |
- alpha | |
- beta | |
- rc | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install deps | |
run: bun i | |
- name: Link | |
run: bun run lint | |
# - name: Test | |
# run: bun run test | |
# - name: Build | |
# run: bun run build | |
- name: Release | |
run: bun run release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |