Skip to content

Commit 0724cea

Browse files
committed
Update GitHub Actions workflow to clone specific branch and change custom_template_dir type to string
1 parent e18a8f3 commit 0724cea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/mkdoxy-test-demos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
python -m pip install -e ".[dev]"
2525
sudo apt-get install doxygen
2626
- name: Clone test repo
27-
run: git clone https://github.com/JakubAndrysek/MkDoxy-demo.git demo
27+
run: git clone --branch core-update https://github.com/JakubAndrysek/MkDoxy-demo.git demo
2828
- name: Build docs
2929
run: |
3030
cd demo

mkdoxy/doxy_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class MkDoxyConfigProject(Config):
4747
doxy_config_default = c.Type(bool, default=True)
4848
doxy_config_file = c.Optional(c.Type(Path))
4949
doxy_config_file_force = c.Type(bool, default=False)
50-
custom_template_dir = c.Optional(c.Type(Path))
50+
custom_template_dir = c.Optional(c.Type(str))
5151

5252

5353
class MkDoxyConfig(Config):

0 commit comments

Comments
 (0)