Skip to content

Commit

Permalink
github actions fix
Browse files Browse the repository at this point in the history
  • Loading branch information
klamar committed Apr 20, 2023
1 parent 37398f1 commit 56aec98
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,17 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- uses: RalfG/python-wheels-manylinux-build@v0.7.1
- name: Install dependencies
run: |
find
- name: copy many linux wheels
run: |
mkdir dist-many
cp dist/*manylinux* dist-many/
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
packages_dir: dist-many/

0 comments on commit 56aec98

Please sign in to comment.