Skip to content

Commit

Permalink
wheel and setuptools are installed in the github action workflow befo…
Browse files Browse the repository at this point in the history
…re creating the dist/
  • Loading branch information
gaborvecsei committed Oct 22, 2020
1 parent 5310586 commit e9167f4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
with:
python-version: 3.7
- name: Build the package
run: python setup.py sdist bdist_wheel
run: |
python -m pip install --user --upgrade setuptools wheel
python setup.py sdist bdist_wheel
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
Expand Down

0 comments on commit e9167f4

Please sign in to comment.