Skip to content

Commit

Permalink
Try to fix doc build
Browse files Browse the repository at this point in the history
  • Loading branch information
constantinpape committed Dec 6, 2024
1 parent d0d307a commit 4415b18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
paths:
- "doc/*.md" # Trigger on changes to any markdown file
- "**/*.py" # Optionally include changes in Python files
- "synapse_net/**/*.py" # Optionally include changes in Python files
branches:
- main # Run the workflow only on pushes to the main branch
workflow_dispatch:
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Generate Documentation
shell: bash -l {0}
run: pdoc synapse_net -d google -o doc/
run: pdoc synapse_net/ -d google -o doc/

- name: Verify Documentation Output
run: ls -la doc/
Expand Down
2 changes: 1 addition & 1 deletion build_doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

if args.out:
cmd.extend(["--out", "tmp/"])
cmd.append("synapse_net")
cmd.append("synapse_net/")

run(cmd)

0 comments on commit 4415b18

Please sign in to comment.