We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a2bde0 commit ba83e9dCopy full SHA for ba83e9d
.github/workflows/ci.yml
@@ -43,7 +43,11 @@ jobs:
43
name: Publish package to PyPI
44
needs: [pytest, pycodestyle]
45
steps:
46
- - name: Publish package
+ - name: Prepare environment
47
+ run: .github/workflows/prepare_environment.sh ${{ matrix.python_version }}
48
+ - name: Build distributions
49
+ run: python setup.py sdist bdist_wheel --universal
50
+ - name: Publih package
51
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
52
uses: pypa/gh-action-pypi-publish@master
53
with:
0 commit comments