mirror of
https://github.com/Wcowin/Mkdocs-Wcowin.git
synced 2025-07-20 08:56:35 +00:00
22 lines
745 B
YAML
22 lines
745 B
YAML
# 此工作流已经被弃用
|
|
|
|
|
|
name: publish site
|
|
on: # 在什么时候触发工作流
|
|
push: # 在从本地main分支被push到GitHub仓库时
|
|
branches:
|
|
- main
|
|
pull_request: # 在main分支合并别人提的pr时
|
|
branches:
|
|
- main
|
|
jobs: # 工作流的具体内容
|
|
deploy:
|
|
runs-on: ubuntu-latest # 创建一个新的云端虚拟机 使用最新Ubuntu系统
|
|
steps:
|
|
- uses: actions/checkout@v2 # 先checkout到main分支
|
|
- uses: actions/setup-python@v2 # 再安装Python3和相关环境
|
|
with:
|
|
python-version: 3.x
|
|
- run: pip install mkdocs-material # 使用pip包管理工具安装mkdocs-material
|
|
- run: mkdocs gh-deploy --force # 使用mkdocs-material部署gh-pages分支
|