-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: tracy626 | ||
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分支 |