-
Notifications
You must be signed in to change notification settings - Fork 5
76 lines (66 loc) · 2.22 KB
/
dispatch-publish.yml
File metadata and controls
76 lines (66 loc) · 2.22 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
# 工作流名称
name: Dispatch Publish
# 运行时显示的名称
run-name: Dispatch Publish
# 触发条件配置
on:
workflow_dispatch:
inputs:
tag:
description: '选择发布版本的tag (alpha/beta/latest)'
required: true
default: 'alpha'
type: choice
options:
- alpha
- beta
- latest
concurrency:
group: ${{ github.workflow }}-${{ github.sha }}
cancel-in-progress: true
# 定义工作流中的作业
jobs:
build:
# 指定运行环境为最新版本的ubuntu
runs-on: ubuntu-latest
steps:
# 步骤1: 检出代码
- name: CheckOut Code
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
# 步骤2: 设置pnpm包管理器
- name: Setup pnpm
uses: pnpm/action-setup@v4
# 步骤3: 设置Node.js环境
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20 # 使用Node.js 20版本
registry-url: 'https://registry.npmjs.org' # 设置npm registry地址
# 步骤4: 获取pnpm缓存目录路径
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
# 步骤5: 配置pnpm缓存
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
# 使用操作系统类型和pnpm-lock.yaml的哈希值作为缓存键
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
# 步骤6: 安装项目依赖
- name: Install dependencies
run: pnpm i --no-frozen-lockfile
# 步骤7: 构建组件
- name: Run Build Components
run: pnpm build
# 步骤8: 发布组件到NPM
- name: Publish components
run: pnpm --filter @opentiny/tiny-vue-mcp publish --tag ${{ inputs.tag }} --access=public --no-git-checks
env:
# 使用NPM令牌进行身份验证
NODE_AUTH_TOKEN: ${{ secrets.NPM_TINY_VUE_MCP_TOKEN }}