We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5664cae commit 4561435Copy full SHA for 4561435
.github/workflows/build.yml
@@ -11,7 +11,11 @@ jobs:
11
steps:
12
- name: Checkout main
13
uses: actions/checkout@v2
14
+ - name: Setup Python 3.x
15
+ uses: actions/setup-python@v2
16
+ with:
17
+ python-version: 3.x
18
+ - name: Install mkdocs-material
19
+ run: pip3 install mkdocs-material
20
- name: Deploy docs
- uses: mhausenblas/mkdocs-deploy-gh-pages@master
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
+ run: mkdocs gh-deploy --force
0 commit comments