Skip to content

Commit

Permalink
Issue #12 try again if and statement
Browse files Browse the repository at this point in the history
  • Loading branch information
thompson318 committed Feb 22, 2024
1 parent 515821f commit 79dde33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ jobs:
python -m build
- name: build ubuntu manylinux
if: matrix.os == 'ubuntu-latest' && python-ver == '3.10'
if: matrix.os == 'ubuntu-latest' && matrix.python-ver == '3.10'
uses: RalfG/[email protected]_x86_64
with:
python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'

- name: upload manylinux
if: matrix.os == 'ubuntu-latest' && python-ver == '3.10'
if: matrix.os == 'ubuntu-latest' && matrix.python-ver == '3.10'
run: |
python -m twine upload -u __token__ -p ${{secrets.PYPI_API_TOKEN}} dist/*-manylinux*.whl --skip-existing
Expand Down

0 comments on commit 79dde33

Please sign in to comment.