Skip to content

Commit b42574d

Browse files
authored
Merge pull request #911 from datamweb/fix-mkdocs-date-localized-plugin
fix date localized-plugin and refactor action
2 parents 0b32ab9 + 27f9983 commit b42574d

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/docs.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,18 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
13-
- uses: actions/setup-python@v4
12+
- name: Checkout Repository
13+
uses: actions/checkout@v4
14+
with:
15+
fetch-depth: 0
16+
- name: Setup Python
17+
uses: actions/setup-python@v4
1418
with:
1519
python-version: 3.x
16-
- run: pip3 install mkdocs-material
17-
- run: pip3 install mkdocs-git-revision-date-localized-plugin
18-
- run: pip3 install mkdocs-redirects
19-
- 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

Comments
 (0)