We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2aa0998 commit bbfa0d3Copy full SHA for bbfa0d3
.github/workflows/deploy.yml
@@ -0,0 +1,17 @@
1
+name: Deploy Docs
2
+on:
3
+ push:
4
+ branches:
5
+ - main # 触发分支
6
+permissions:
7
+ contents: write
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-python@v4
14
+ with:
15
+ python-version: 3.x
16
+ - run: pip install mkdocs
17
+ - run: mkdocs gh-deploy --force
0 commit comments