Skip to content

Commit

Permalink
ci: fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Dec 22, 2023
1 parent 6fd7fce commit 212d0b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/deploy_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v4
Expand All @@ -21,19 +21,16 @@ jobs:
# Used to host cibuildwheel
- uses: actions/setup-python@v3

- name: Install cibuildwheel
run: python -m pip install cibuildwheel

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
run: python -m pip wheel --no-deps -w dist

- name: publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PWD }}
run: |
pipx install twine
twine upload --skip-existing wheelhouse/*
twine upload --skip-existing dist/*
build_sdist:
name: Build source distribution
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.1.3
- maintenance release
0.1.2
- ci: fix pypi build
0.1.1
Expand Down

0 comments on commit 212d0b7

Please sign in to comment.