-
-
Notifications
You must be signed in to change notification settings - Fork 1
64 lines (55 loc) · 1.64 KB
/
publish.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
61
62
63
64
name: npm build and publish
# 执行脚本的生命周期
on:
#选择在 push 到 github 时触发工作流
push:
#分支可以选择多个
branches: [main]
# 一个 workflow 可以有多个 job
jobs:
build:
permissions:
id-token: write
contents: write
# 指定操作系统为'ubuntu-latest'
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Version Check
id: check
uses: EndBug/version-check@v2
with:
diff-search: true
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: latest
if: steps.check.outputs.changed == 'true'
- name: Node env setup
uses: actions/setup-node@v4
if: steps.check.outputs.changed == 'true'
with:
node-version: lts/*
cache: pnpm
registry-url: 'https://registry.npmjs.org'
- run: pnpm i
if: steps.check.outputs.changed == 'true'
- run: pnpm run build
if: steps.check.outputs.changed == 'true'
- name: zip
if: steps.check.outputs.changed == 'true'
uses: montudor/action-zip@v1
with:
args: zip -qq -r dist.zip dist
- name: Upload & release
if: steps.check.outputs.changed == 'true'
uses: mnao305/[email protected]
with:
file-path: dist.zip
extension-id: hibclclepijigjnfdkmkfhjogfhgicda
client-id: ${{ secrets.CLIENT_ID }}
client-secret: ${{ secrets.CLIENT_SECRET }}
refresh-token: ${{ secrets.REFRESH_TOKEN }}