Skip to content

Commit d7d64a2

Browse files
authored
Update generate-docs.yml
1 parent a89f91c commit d7d64a2

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/generate-docs.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,14 @@ jobs:
1212
runs-on: ubuntu-latest
1313
if: github.event.repository.fork == false
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/setup-python@v2
15+
- uses: actions/checkout@v3
1716
with:
18-
python-version: 3.9
19-
- run: pip install mkdocs-material
20-
- run: mkdocs gh-deploy --force
17+
token: ${{ secrets.GITHUB_TOKEN }}
18+
- uses: actions/setup-python@v3
19+
with:
20+
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

Comments
 (0)