Skip to content

Commit

Permalink
Merge 8235b46 into d7fa7ce
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Jan 28, 2023
2 parents d7fa7ce + 8235b46 commit cdf96a7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ jobs:
python-version: 3.9
- name: Install pypa/build
run: |
python -m pip install --upgrade setuptools pip wheel
python -m pip install --upgrade setuptools pip wheel twine
python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: python -m build --sdist --wheel --outdir dist/ .
run: |
python -m build --sdist --wheel --outdir dist/ .
twine check --strict dist/*
- name: Publish package to test PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down

0 comments on commit cdf96a7

Please sign in to comment.