-
-
Notifications
You must be signed in to change notification settings - Fork 33
60 lines (50 loc) · 1.25 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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@v2
with:
bun-version: 1.0.31
- 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
bun run sync:md
- 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 icons" || 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 }}