Skip to content

Commit

Permalink
Temp
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBB committed Nov 28, 2024
1 parent 05da2f1 commit 0054c33
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ jobs:
manylinux: auto
rust-toolchain: nightly
command: build
args: --release --sdist -o dist -m goldpy/Cargo.toml
args: --release --sdist -o dist -m goldpy/Cargo.toml --interpreter 3.8 3.9 3.10 3.11 3.12 3.13

- uses: messense/maturin-action@v1
if: ${{ matrix.os == 'windows-latest' }}
with:
manylinux: auto
rust-toolchain: nightly
command: build
args: --release -o dist -m goldpy/Cargo.toml
args: --release -o dist -m goldpy/Cargo.toml --interpreter 3.8 3.9 3.10 3.11 3.12 3.13

# - uses: actions/setup-python@v4
# if: ${{ matrix.os == 'macos-latest' }}
Expand All @@ -127,23 +127,24 @@ jobs:
manylinux: auto
rust-toolchain: nightly
command: build
args: --release -o dist --universal2 --find-interpreter -m goldpy/Cargo.toml
args: --release -o dist --universal2 -m goldpy/Cargo.toml --interpreter 3.8 3.9 3.10 3.11 3.12 3.13

- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist
name: wheel
path: ./dist/*.whl

release:
name: Release
if: "startsWith(github.ref, 'refs/tags/')"
deploy:
name: Deploy
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
needs: build-wheels
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: wheels
path: dist
merge-multiple: true
- name: Publish to PyPI
uses: messense/maturin-action@v1
env:
Expand Down

0 comments on commit 0054c33

Please sign in to comment.