Skip to content

Commit 83c5b25

Browse files
Release Python only on demand, and force toolchain version
1 parent 6c7c479 commit 83c5b25

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/python.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
target: ${{ matrix.target }}
3131
args: --release --out dist --find-interpreter -F python
3232
sccache: 'true'
33-
rust-toolchain: 1.73
33+
rust-toolchain: 1.74
3434

3535
- name: Upload wheels
3636
uses: actions/upload-artifact@v3
@@ -69,7 +69,7 @@ jobs:
6969
with:
7070
target: ${{ matrix.target }}
7171
args: --release --out dist --find-interpreter -F python
72-
rust-toolchain: 1.73
72+
rust-toolchain: 1.74
7373
- name: Upload wheels
7474
uses: actions/upload-artifact@v3
7575
with:
@@ -105,7 +105,7 @@ jobs:
105105
target: ${{ matrix.target }}
106106
args: --release --out dist --find-interpreter -F python
107107
sccache: 'true'
108-
rust-toolchain: 1.73
108+
rust-toolchain: 1.74
109109

110110
- name: Upload wheels
111111
uses: actions/upload-artifact@v3
@@ -132,7 +132,7 @@ jobs:
132132
with:
133133
command: sdist
134134
args: --out dist
135-
rust-toolchain: 1.73
135+
rust-toolchain: 1.74
136136
- name: Upload sdist
137137
uses: actions/upload-artifact@v3
138138
with:
@@ -142,7 +142,7 @@ jobs:
142142
release:
143143
name: Release
144144
runs-on: ubuntu-latest
145-
# if : github.ref_type == 'tag' || github.event_name == 'workflow_dispatch'
145+
if: github.ref_type == 'tag'
146146
needs: [linux, windows, macos, sdist]
147147
steps:
148148
- uses: actions/download-artifact@v3

0 commit comments

Comments
 (0)