🔧 chore: Fix deps #15
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 | |
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 | |
- name: CI | |
run: bun run ci | |
- 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 }} | |
# - name: Build Static | |
# run: bun run build:static | |
# | |
# - name: Commit changes | |
# run: |- | |
# git diff | |
# git config --global user.name "lobehubbot" | |
# git config --global user.email "[email protected]" | |
# git add . | |
# git commit -m "✨ feat(auto): Auto build static emojis" || exit 0 | |
# git push | |
# env: | |
# GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
# | |
# - name: Release Static | |
# run: bun run release:static | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |