Skip to content

Commit 08c9f63

Browse files
committed
cicd/lib-build-and-push: make input parameter definitions ordered same way
1 parent 0e9beb7 commit 08c9f63

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/lib-build-and-push.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,34 +6,37 @@ on:
66
upload:
77
description: 'Upload to PyPI'
88
type: boolean
9+
required: false
910
default: false
1011

1112
python-version:
1213
description: 'Python version to run on'
13-
required: true
1414
type: string
15+
required: true
1516
default: "3.13"
1617

1718
target:
18-
type: string
1919
description: "target os to build for: linux,macos,windows"
20+
type: string
21+
required: false
2022
default: "linux,macos,windows"
2123

2224
cibw-skip:
23-
type: string
2425
description: 'CIBUILDWHEEL builds pattern to skip, goes to CIBW_SKIP env'
26+
type: string
2527
required: false
2628
default: 'cp2* cp35* cp36* cp37* *i686 *musllinux*'
2729

2830
target-wheels-python-versions:
29-
type: string
3031
description: "List of python version to build wheels for, to be translated to CIBW_BUILD env"
32+
type: string
3133
required: false
3234
default: 3.8 3.9 3.10 3.11 3.12 3.13
3335

3436
cibw-manylinux-default-image:
37+
description: "A manylinux image to be used by cibuildwheel"
3538
type: string
36-
description: "An manylinux image to be used by cibuildwheel"
39+
required: false
3740
default: "manylinux_2_28"
3841

3942
env:

0 commit comments

Comments
 (0)