Skip to content

Commit

Permalink
Use maturin prerelease version to build future releases
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Jun 19, 2022
1 parent 246c7ec commit 0ea3785
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,11 @@ jobs:
- uses: actions/checkout@v3
- name: Build wheel
run: |
sudo python3 -m pip install maturin
maturin build --release -b bin -o dist --no-sdist \
sudo python3 -m pip install --pre maturin
maturin build --release -b bin -o dist \
--target ${{ matrix.platform.target }} \
--manylinux ${{ matrix.platform.manylinux }} musllinux_1_1 \
--cargo-extra-args="--features password-storage"
--features password-storage
- name: Archive binary
run: tar czvf target/release/maturin-${{ matrix.platform.target }}.tar.gz -C target/${{ matrix.platform.target }}/release maturin
- name: Upload wheel artifacts
Expand Down Expand Up @@ -219,12 +219,12 @@ jobs:
target: ${{ matrix.platform.target }}
- name: Build wheel
run: |
sudo python3 -m pip install maturin
maturin build --release -b bin -o dist --no-sdist \
sudo python3 -m pip install --pre maturin
maturin build --release -b bin -o dist \
--target ${{ matrix.platform.target }} \
--manylinux ${{ matrix.platform.manylinux }} ${{ matrix.platform.musllinux }} \
--cargo-extra-args="--no-default-features" \
--cargo-extra-args="--features log,upload,human-panic,password-storage"
--no-default-features \
--features log,upload,human-panic,password-storage
- name: Archive binary
run: tar czvf target/release/maturin-${{ matrix.platform.target }}.tar.gz -C target/${{ matrix.platform.target }}/release maturin
- name: Upload wheel artifacts
Expand Down

0 comments on commit 0ea3785

Please sign in to comment.