feat: 更新常识部分、更新钢琴训练计划 #214
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: deploy | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # for mkdocs-git-revision-date-localized-plugin | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.12.4 | |
- run: pip install -r requirements.txt | |
- name: Create CNAME file | |
run: echo "www.philfan.cn" > docs/CNAME # Adjust the path if your configuration is different | |
- run: mkdocs gh-deploy --force |