Skip to content

Commit

Permalink
Debug CICD
Browse files Browse the repository at this point in the history
  • Loading branch information
bdragon300 committed Nov 3, 2024
1 parent 25e55f0 commit b522a5d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'latest'
- uses: actions/setup-python@v5
with:
python-version: '3.8'
Expand All @@ -24,7 +27,7 @@ jobs:
- name: Install task
run: curl -sL https://taskfile.dev/install.sh | sh
- name: Build documentation
run: ./bin/task build_docs
run: "./bin/task build_docs -- -c lunr_search=\"{'fuzziness': 1, 'index_docstrings': True}\""
- name: Upload static files as artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tasks:
build_docs:
desc: "Build documentation"
cmds:
- poetry run pdoc3 -o {{ .DOCS_BUILD_DIR }} --force --template-dir pdoc_tpl --html pyzkaccess
- poetry run pdoc3 -o {{ .DOCS_BUILD_DIR }} --force --template-dir pdoc_tpl --html pyzkaccess {{ .CLI_ARGS }}
- cp -rf docs/* {{ .DOCS_BUILD_DIR }}/

lint:
Expand Down

0 comments on commit b522a5d

Please sign in to comment.