File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 27
27
type : string
28
28
default : ' '
29
29
purepython_buildargs :
30
- description : Args to pass in to build as `python -m build {build_args }` e.g. '--sdist'
30
+ description : Args to pass in to build as `python -m build {purepython_buildargs }` e.g. '--sdist'
31
31
If using binary wheels, set to --sdist to upload just the source distribution.
32
32
type : string
33
33
required : false
98
98
TWINE_USERNAME : __token__
99
99
TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN }}
100
100
run : |
101
- python -m build ${{ inputs.build_args }}
101
+ python -m build ${{ inputs.purepython_buildargs }}
102
102
twine check dist/*
103
103
twine upload dist/*
104
104
@@ -108,7 +108,7 @@ jobs:
108
108
TWINE_USERNAME : __token__
109
109
TWINE_PASSWORD : ${{ secrets.PYPI_TEST_API_TOKEN }}
110
110
run : |
111
- python -m build ${{ inputs.build_args }}
111
+ python -m build ${{ inputs.purepython_buildargs }}
112
112
twine check dist/*
113
113
# HINT: if your upload fails here due to "unsupported local version",
114
114
# put `local_scheme = "no-local-version"` pyproject.toml's
@@ -117,12 +117,12 @@ jobs:
117
117
118
118
119
119
deploy_binary_wheels :
120
- if : inputs.platforms != '' && inputs.pyversions != ''
120
+ if : inputs.binwheel_platforms != '' && inputs.binwheel_pyversions != ''
121
121
needs : deploy_purepython
122
122
strategy :
123
123
matrix :
124
- platform : ${{ fromJson(inputs.platforms ) }}
125
- python : ${{ fromJson(inputs.pyversions ) }}
124
+ platform : ${{ fromJson(inputs.binwheel_platforms ) }}
125
+ python : ${{ fromJson(inputs.binwheel_pyversions ) }}
126
126
runs-on : ${{ matrix.platform }}
127
127
defaults :
128
128
run :
You can’t perform that action at this time.
0 commit comments