@@ -184,7 +184,7 @@ jobs:
184
184
macos-x86_64 :
185
185
name : Package graph_mate for Mac x86_64
186
186
runs-on : macos-latest
187
- if : " startsWith(github.ref, 'refs/tags/')"
187
+ if : startsWith(github.ref, 'refs/tags/') && inputs.crate == 'graph_mate'
188
188
needs : test_python
189
189
steps :
190
190
- name : Checkout code
@@ -219,7 +219,7 @@ jobs:
219
219
macos-universal :
220
220
name : Package graph_mate for Mac Universal
221
221
runs-on : macos-latest
222
- if : " startsWith(github.ref, 'refs/tags/')"
222
+ if : startsWith(github.ref, 'refs/tags/') && inputs.crate == 'graph_mate'
223
223
needs : test_python
224
224
steps :
225
225
- name : Checkout code
@@ -254,7 +254,7 @@ jobs:
254
254
windows :
255
255
name : Package graph_mate for Windows
256
256
runs-on : windows-latest
257
- if : " startsWith(github.ref, 'refs/tags/')"
257
+ if : startsWith(github.ref, 'refs/tags/') && inputs.crate == 'graph_mate'
258
258
needs : test_python
259
259
strategy :
260
260
matrix :
@@ -293,7 +293,7 @@ jobs:
293
293
linux :
294
294
name : Package graph_mate for Linux
295
295
runs-on : ubuntu-latest
296
- if : " startsWith(github.ref, 'refs/tags/')"
296
+ if : startsWith(github.ref, 'refs/tags/') && inputs.crate == 'graph_mate'
297
297
needs : test_python
298
298
strategy :
299
299
matrix :
@@ -341,10 +341,6 @@ jobs:
341
341
- fmt
342
342
- clippy
343
343
- test_python
344
- - macos-universal
345
- - macos-x86_64
346
- - windows
347
- - linux
348
344
steps :
349
345
- name : Checkout code
350
346
uses : actions/checkout@v4
0 commit comments