提交BipedalWalker-RL强化学习项目代码 (#7592) #3794
This file contains hidden or 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
| # 参考:https://github.com/Tiryoh/actions-mkdocs | |
| name: Deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| name: Deploy docs to GitHub Pages | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Build | |
| uses: OpenHUTB/actions-mkdocs@main | |
| with: | |
| mkdocs_version: 'latest' # option | |
| #mkdocs_version: '1.1' # option | |
| # 安装行内公式渲染的依赖(python-markdown-math) | |
| requirements: 'requirements.txt' # option | |
| configfile: 'mkdocs.yml' # option | |
| - name: Deploy | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./site |