Skip to content

Commit 0310e41

Browse files
authored
Fix the deploy pipeline (#57)
Build the package so the publish can pick them up Signed-off-by: David ML Brown Jr <dmlb2000@gmail.com>
1 parent 2e6ab8f commit 0310e41

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/pypi.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,19 @@ jobs:
1515
os: [ubuntu-latest]
1616
python-version: ['3.10']
1717
steps:
18+
- uses: actions/checkout@v3
19+
- name: Set up Python
20+
uses: actions/setup-python@v3
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
- name: Display Python version
24+
run: |
25+
python --version
26+
pip --version
27+
pip install coverage pep257 pre-commit pylint pytest readthedocs-sphinx-ext recommonmark setuptools sphinx sphinx-rtd-theme wheel
28+
pip install .
29+
python setup.py bdist_wheel
30+
python setup.py sdist
1831
- name: Publish package
1932
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
2033
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)