Skip to content

Commit

Permalink
Fixed github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cykooz committed Oct 26, 2022
1 parent fdc8521 commit 0062644
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,24 @@ jobs:
cd ..
- name: Build Wheels
if: ${{ matrix.python-version == '3.11' }}
uses: messense/maturin-action@v1
with:
maturin-version: latest
target: x86_64
manylinux: auto
args: --release --strip --out dist -i python
args: --release --strip --out dist -i 3.7 3.8 3.9 3.10 3.11

- name: Install built wheel
if: ${{ matrix.python-version == '3.11' }}
run: |
cd dist
python -m pip install cykooz.resizer --no-index --find-links ./ --force-reinstall
python -c "import cykooz.resizer"
cd ..
- name: Upload wheels
if: ${{ matrix.python-version == '3.11' }}
uses: actions/upload-artifact@v3
with:
name: wheels
Expand Down

0 comments on commit 0062644

Please sign in to comment.