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 a89f91c commit d7d64a2Copy full SHA for d7d64a2
.github/workflows/generate-docs.yml
@@ -12,9 +12,14 @@ jobs:
12
runs-on: ubuntu-latest
13
if: github.event.repository.fork == false
14
steps:
15
- - uses: actions/checkout@v2
16
- - uses: actions/setup-python@v2
+ - uses: actions/checkout@v3
17
with:
18
- python-version: 3.9
19
- - run: pip install mkdocs-material
20
- - run: mkdocs gh-deploy --force
+ token: ${{ secrets.GITHUB_TOKEN }}
+ - uses: actions/setup-python@v3
+ with:
+ python-version: '3.9'
21
+ architecture: 'x64'
22
+ cache: 'pip'
23
+ - run: |
24
+ pip install mkdocs-material
25
+ mkdocs gh-deploy --force
0 commit comments