Skip to content

Commit

Permalink
XX
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Ballance <[email protected]>
  • Loading branch information
mballance committed Oct 21, 2023
1 parent ee68dcd commit 4f37bd5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,21 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
./packages/python/bin/twine upload dist/*.whl
./packages/python/bin/twine upload wheelhouse/*.whl
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Fetch dependencies
env:
BUILD_NUM: ${{ github.run_id }}
run: |
python3 --version
python3 -m pip install ivpm
python3 -m ivpm update
./packages/python/bin/python3 -m pip install cython setuptools wheel build twine
- name: Build wheel
env:
BUILD_NUM: ${{ github.run_id }}
run: |
./packages/python/bin/python3 setup.py bdist_wheel
- name: Publish to PyPi
Expand Down Expand Up @@ -112,8 +112,8 @@ jobs:
ls packages/python
ls packages/python/Lib
ls packages/python/Scripts
./packages/python/bin/python -m pip install cython setuptools wheel build twine
./packages/python/bin/python setup.py build bdist_wheel
./packages/python/Scripts/python -m pip install cython setuptools wheel build twine
./packages/python/Scripts/python setup.py build bdist_wheel
ls dist
- name: Publish to PyPi
Expand All @@ -123,4 +123,4 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
shell: bash
run: |
./packages/python/bin/twine -m twine upload dist/*.whl
./packages/python/Scripts/python -m twine upload dist/*.whl

0 comments on commit 4f37bd5

Please sign in to comment.