Skip to content

Commit 4d17b93

Browse files
authored
Fix Wiki dependencies (#363)
1 parent 1956602 commit 4d17b93

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/build-and-publish.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ jobs:
9292
if: ${{ needs.docs.result == 'success' }}
9393
steps:
9494
- uses: actions/checkout@v4
95+
with:
96+
fetch-depth: 0 # Fetch all tags; Required for doc versioning
9597

9698
- name: Download extracted Javadoc
9799
uses: actions/download-artifact@v4

docs/mkdocs.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
site_name: streams-bootstrap
2-
repo_url: https://github.com/bakdata/streams-bootstrap
3-
repo_name: bakdata/streams-bootstrap
42
site_url: https://bakdata.github.io/streams-bootstrap/
3+
repo_name: streams-bootstrap
4+
repo_url: https://github.com/bakdata/streams-bootstrap
5+
remote_branch: gh-pages
6+
copyright: Copyright © 2025 bakdata
57

68
theme:
79
name: material
@@ -14,6 +16,8 @@ extra:
1416
provider: mike
1517
plugins:
1618
- search
19+
- mike:
20+
alias_type: symlink
1721
markdown_extensions:
1822
- attr_list
1923
nav:

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ package-mode = false
55
python = "^3.11"
66

77
[tool.poetry.group.docs.dependencies]
8-
mkdocs = ">=1.5,<2.0"
9-
mkdocs-material = ">=9.5,<10.0"
10-
mike = ">=1.1,<2.0"
8+
mkdocs = "^1.6.1"
9+
mkdocs-material = "^9.6.15"
10+
mike = "^2.1.3"

0 commit comments

Comments
 (0)