-
-
Notifications
You must be signed in to change notification settings - Fork 168
59 lines (50 loc) · 1.78 KB
/
deploy-site-gitee.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
name: Deploy VitePress site to Gitee Pages
on:
push:
branches:
- release
jobs:
deploy-and-sync:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Install pnpm
run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build Site
run: pnpm build:docs
# 将文档产物提交到gh-pages分支
- name: Deploy for Gitee 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs/.vitepress/dist
# enable single-commit to reduce the repo size
single-commit: true
clean: true
- name: Sync to Gitee
uses: wearerequired/[email protected]
env:
SSH_PRIVATE_KEY: ${{ secrets.GITEE_RSA_PRIVATE_KEY }}
with:
# GitHub 仓库地址
source-repo: [email protected]:Moonofweisheng/wot-design-uni.git
# Gitee 仓库地址
destination-repo: [email protected]:wot-design-uni/wot-design-uni.git
- name: Build Gitee Pages
uses: yanglbme/gitee-pages-action@main
with:
# 替换为你的 Gitee 用户名
gitee-username: wot-design-uni
# 注意在 Settings->Secrets 配置 GITEE_PASSWORD
gitee-password: ${{ secrets.GITEE_PASSWORD }}
# 注意替换为你的 Gitee 仓库,仓库名严格区分大小写,请准确填写,否则会出错
gitee-repo: wot-design-uni/wot-design-uni
# 要部署的分支,默认是 master,若是其他分支,则需要指定(指定的分支必须存在)
branch: gh-pages