You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build_wheels.yml
+29-38Lines changed: 29 additions & 38 deletions
Original file line number
Diff line number
Diff line change
@@ -4,40 +4,11 @@ name: build wheels
4
4
# Developers who are starting a new release should use this workflow to ensure wheels will be built correctly.
5
5
# Devs should check out their fork, add a tag to the last master commit on their fork, and run the release off of their fork on the added tag to ensure wheels will be built correctly.
6
6
on:
7
-
workflow_dispatch:
7
+
workflow_dispatch:# Allows manual trigger of the workflow
8
8
inputs:
9
-
release_version:
10
-
description: 'The release version to use (e.g., v1.2.3)'
11
-
required: true
12
-
type: string
13
-
highest_semver_tag:
14
-
description: 'The highest semantic version tag without the "v" prefix (e.g., 1.2.3)'
15
-
required: true
16
-
type: string
17
-
version_without_prefix:
18
-
description: 'The release version to use without "v" (e.g., 1.2.3)'
19
-
required: true
20
-
type: string
21
-
token:
22
-
description: 'Personal Access Token'
23
-
required: true
24
-
default: ""
25
-
type: string
26
-
27
-
workflow_call:
28
-
inputs:
29
-
release_version:
30
-
description: 'The release version to use (e.g., v1.2.3)'
31
-
required: true
32
-
type: string
33
-
highest_semver_tag:
34
-
description: 'The highest semantic version tag without the "v" prefix (e.g., 1.2.3)'
35
-
required: true
36
-
type: string
37
-
version_without_prefix:
38
-
description: 'The release version to use without "v" (e.g., 1.2.3)'
39
-
required: true
40
-
type: string
9
+
custom_version: # Optional input for a custom version
10
+
description: 'Custom version to publish (e.g., v1.2.3) -- only edit if you know what you are doing'
0 commit comments