Skip to content

Commit

Permalink
chore: fix path to created docs (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
italvi authored Sep 18, 2024
1 parent 7f3c5f9 commit a428232
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ jobs:
- name: Install dependencies
run: poetry install --with docs
- name: Build HTML
run: poetry run sphinx-build -a -E docs/source/ docs/build/
run: poetry run sphinx-build -a -E docs/source/ docs/build
- name: Upload artifacts
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: html-docs
path: docs/build/html
path: docs/build
- name: Deploy pages
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html
publish_dir: docs/build
- name: Publish package
run: poetry publish --build

0 comments on commit a428232

Please sign in to comment.