更新【面向对象程序设计(Java)】课程设计辅助资料 #72
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
| name: Deploy MkDocs | |
| on: | |
| push: | |
| branches: [ main ] | |
| permissions: write-all | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@main | |
| - name: Setup Python | |
| uses: actions/setup-python@main | |
| with: | |
| python-version: '3.x' | |
| - name: Update dir | |
| run: python ./update_dir.py | |
| - name: Deploy docs to GitHub Pages | |
| uses: H-Sofie/mkdocs-deploy-with-material-theme@main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |