Skip to content

Commit

Permalink
Merge pull request #34 from hjweide/publish-source
Browse files Browse the repository at this point in the history
Publish source package too
  • Loading branch information
hjweide authored Apr 27, 2022
2 parents 92e8dd8 + ec7e86e commit e3238c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/python-publish-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install twine
python -m pip install twine build
- name: Build source distribution
run: |
python -m build --sdist
- name: Build manylinux Python wheels
uses: RalfG/[email protected]_x86_64
with:
Expand All @@ -46,5 +49,5 @@ jobs:
#TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
#python -m twine upload --repository testpypi dist/*-manylinux*.whl --verbose --skip-existing
python -m twine upload dist/*-manylinux*.whl --verbose --skip-existing
#python -m twine upload --repository testpypi dist/*-manylinux*.whl dist/*.tar.gz --verbose --skip-existing
python -m twine upload dist/*-manylinux*.whl dist/*.tar.gz --verbose --skip-existing
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setuptools.setup(
name="pyastar2d",
version="1.0.3",
version="1.0.4",
author="Hendrik Weideman",
author_email="[email protected]",
description=(
Expand Down

0 comments on commit e3238c8

Please sign in to comment.