fix pytest #11
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
name: 部署文档 | |
on: | |
push: | |
branches: | |
- develop # 根据您的主分支名称调整 | |
- master | |
- mkdoc | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: 设置Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' # 根据您的Python版本调整 | |
- name: 安装依赖 | |
run: | | |
pip install poetry | |
poetry install | |
pip install mkdocs-material mkdocs | |
- name: 构建文档 | |
run: mkdocs build | |
- name: 部署到GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
personal_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
publish_dir: ./site # MkDocs默认输出目录 |