Skip to content

fix: bugs of URL

fix: bugs of URL #90

Workflow file for this run

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.x
- 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