Skip to content

Commit

Permalink
Fix mdocs build process (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
rainbowdashlabs authored Dec 3, 2023
1 parent acce259 commit a85d81d
Show file tree
Hide file tree
Showing 6 changed files with 609 additions and 11 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,5 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: pip install mkdocs-git-revision-date-localized-plugin
- run: mkdocs gh-deploy --force
python-version: 3.11
- run: pip install pipenv && pipenv install && pipenv run mkdocs gh-deploy --force
5 changes: 2 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,5 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: pip install mkdocs-git-revision-date-localized-plugin
python-version: 3.11
- run: pip install pipenv && pipenv install && pipenv run mkdocs build
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,6 @@ buildNumber.properties
# Bot internal generated data
/config/
/logs/
/out/
/out/

/site/
13 changes: 13 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
mkdocs-material = "*"
mkdocs-git-revision-date-localized-plugin = "*"

[dev-packages]

[requires]
python_version = "3.11"
Loading

0 comments on commit a85d81d

Please sign in to comment.