File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 22
22
type : string
23
23
default : " "
24
24
25
+ workflow_dispatch :
26
+ inputs :
27
+ PLATFORM :
28
+ type : choice
29
+ options :
30
+ - linux-arm64
31
+ - linux-x64
32
+ - windows-x64
33
+ - macos-arm64
34
+ - macos-x64
35
+ description : " Platform to build for"
36
+ required : true
37
+ MODE :
38
+ type : choice
39
+ required : false
40
+ options :
41
+ - pypi
42
+ - pr
43
+ description : " The build mode (`pypi` includes the web viewer, `pr` does not)"
44
+ CONCURRENCY :
45
+ required : false
46
+ type : string
47
+ default : " adhoc"
48
+ description : " Concurrency group to use"
49
+ WHEEL_ARTIFACT_NAME :
50
+ required : false
51
+ type : string
52
+ default : " "
53
+ description : " If set, will be saved under that name in the workflow artifacts"
54
+ RELEASE_COMMIT :
55
+ required : false
56
+ type : string
57
+ default : " "
58
+ description : " Release commit"
59
+
25
60
concurrency :
26
61
group : ${{ inputs.CONCURRENCY }}-build-wheels
27
62
cancel-in-progress : true
You can’t perform that action at this time.
0 commit comments