forked from PyWavelets/pywt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2f552a
commit effd93d
Showing
1 changed file
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,22 +33,25 @@ jobs: | |
|
||
- name: Copy wheel to built docs | ||
run: | | ||
mkdir -p docs/build/lite/pypi | ||
cp wheelhouse/*.whl docs/build/lite/pypi/ | ||
mkdir -p doc/build/lite/pypi | ||
cp wheelhouse/*.whl doc/build/lite/pypi/ | ||
- name: Build docs | ||
run: sphinx-build -b html doc/source docs/build/html | ||
run: sphinx-build -b html doc/source doc/build/html | ||
|
||
- name: Sanity check docs | ||
run: tree doc/build | ||
|
||
- name: Upload docs | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: docs | ||
path: docs/build/html | ||
name: documentation | ||
path: doc/build/html | ||
|
||
- name: Deploy docs | ||
uses: peaceiris/actions-gh-pages@v4 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./docs/build/html | ||
publish_dir: ./doc/build/html | ||
user_name: agriyakhetarpal | ||
user_email: "[email protected]" |