Skip to content

Commit

Permalink
Release Python only on demand, and force toolchain version
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Nov 22, 2023
1 parent 6c7c479 commit 83c5b25
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter -F python
sccache: 'true'
rust-toolchain: 1.73
rust-toolchain: 1.74

- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter -F python
rust-toolchain: 1.73
rust-toolchain: 1.74
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter -F python
sccache: 'true'
rust-toolchain: 1.73
rust-toolchain: 1.74

- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -132,7 +132,7 @@ jobs:
with:
command: sdist
args: --out dist
rust-toolchain: 1.73
rust-toolchain: 1.74
- name: Upload sdist
uses: actions/upload-artifact@v3
with:
Expand All @@ -142,7 +142,7 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
# if : github.ref_type == 'tag' || github.event_name == 'workflow_dispatch'
if: github.ref_type == 'tag'
needs: [linux, windows, macos, sdist]
steps:
- uses: actions/download-artifact@v3
Expand Down

0 comments on commit 83c5b25

Please sign in to comment.