We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0b32ab9 + 27f9983 commit b42574dCopy full SHA for b42574d
1 file changed
.github/workflows/docs.yml
@@ -9,11 +9,18 @@ jobs:
9
deploy:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v4
13
- - uses: actions/setup-python@v4
+ - name: Checkout Repository
+ uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: 0
16
+ - name: Setup Python
17
+ uses: actions/setup-python@v4
18
with:
19
python-version: 3.x
- - run: pip3 install mkdocs-material
- - run: pip3 install mkdocs-git-revision-date-localized-plugin
- - run: pip3 install mkdocs-redirects
- - run: mkdocs gh-deploy --force
20
+ - name: Install Dependencies
21
+ run: |
22
+ pip3 install mkdocs-material
23
+ pip3 install mkdocs-git-revision-date-localized-plugin
24
+ pip3 install mkdocs-redirects
25
+ - name: Publish Shiled Documentation
26
+ run: mkdocs gh-deploy --force
0 commit comments