Skip to content

Commit

Permalink
try with absolute paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Halbaroth committed Jul 18, 2024
1 parent c2e2a8e commit 64ca3c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ jobs:
uses: ammaraskar/sphinx-action@master
with:
docs-folder: "docs/sphinx_docs/"
build-command: "sphinx-build . -W -b html _build/sphinx_docs"
build-command: "sphinx-build . -W -b html ./_build/sphinx_docs"

- name: Copy odoc documentation
shell: bash
run: |
cp -rf _build/default/_doc/_html/* _build/sphinx_docs/API
cp -rf ./_build/default/_doc/_html/* ./_build/sphinx_docs/API
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: doc-artifact
path: _build/sphinx_docs
path: ./_build/sphinx_docs

0 comments on commit 64ca3c7

Please sign in to comment.