Skip to content

Commit

Permalink
Fix minor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tfiedor committed Nov 3, 2023
1 parent 5c4019d commit 676d5b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ jobs:

- name: Compile the documentation
run: |
make -C doc html
make -C docs html
- name: Deploy to GH pages
uses: JamesIves/github-pages-deploy-action@v4
with:
# TODO: CHECK THIS IS CORRECT PATH
folder: doc/_build/html
folder: docs/_build/html

build-and-deploy-to-pypi:
needs: release
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,13 @@ jobs:
pip3 install -q build
make pypi-release
- name: Install from dist
- name: Install from dist (wheel)
run: |
pip3 install dist/*
pip3 install dist/*.whl
- name: Install from dist (tar.gz)
run: |
pip3 install dist/*.tar.gz
# Tests that documentation is buildable. We limit the test to version 3.11 in order to have less clutter in Actions
build-docs:
Expand Down

0 comments on commit 676d5b3

Please sign in to comment.