Skip to content

Commit

Permalink
Make sure man pages are part of sdist tarball
Browse files Browse the repository at this point in the history
The current tarball when uploaded to pypi via github actions
does not contain the manual pages because the doc target to
build them is not called. This commit runs the doc tox target
which is called prior pypi release. This Fixes #38
  • Loading branch information
schaefi committed Jun 21, 2021
1 parent 59f0111 commit f632307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
python -m pip install tox
- name: Prepare
run: |
tox -e release
tox -e doc,release
- name: Publish
uses: pypa/gh-action-pypi-publish@master
with:
Expand Down

0 comments on commit f632307

Please sign in to comment.