-
Notifications
You must be signed in to change notification settings - Fork 45
69 lines (60 loc) · 1.56 KB
/
deploy.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
65
66
67
68
69
name: GitHub Actions Build and Deploy
# 触发条件: push 到 master 分支后
on:
workflow_dispatch:
repository_dispatch:
types: [build-and-deploy]
push:
branches:
- master
# 只在下列路径变更时触发
paths:
- 'docs/**'
- 'package.json'
# 设置权限
permissions: write-all
# 设置上海时区
env:
TZ: Asia/Shanghai
# 任务
jobs:
build-and-deploy:
# 服务器环境:最新版 ubuntu
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
# 拉取代码
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# 安装 pnpm
- name: Install pnpm
uses: pnpm/action-setup@v4
# 设置 node 版本
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
# 打包静态文件
- name: Run Script
env:
APP_BASE_PATH: /maomao1996/mm-notes
run: pnpm install && pnpm run build
- name: Copy files
run: cp README.md ./dist/
# 部署
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.ACCESS_TOKEN }}
commit-message: Deploying to gh-pages from @ ${{ github.sha }} 🚀
# 指定仓库
repository-name: maomao1996/mm-notes
# GitHub Pages 读取的分支
branch: gh-pages
# 静态文件所在目录
folder: dist