Skip to content

Commit

Permalink
build: fix CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Aug 5, 2024
1 parent 491785b commit f67937c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deploy_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install -e .
- name: Build and publish
- name: build
run: pipx run build --sdist --wheel
- name: publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PWD }}
run: |
python setup.py sdist bdist_wheel
pipx install twine
twine upload --skip-existing dist/*
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.8.1
- build: fix CI pipeline
0.8.0
- setup: migrate to pyproject.toml
0.7.8
Expand Down

0 comments on commit f67937c

Please sign in to comment.