File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 6868 description : ' Timeout for the job (in minutes)'
6969 default : 60
7070 type : number
71+ build-command :
72+ description : The build command to use if build-platform is python-build-package
73+ required : false
74+ default : " python setup.py bdist_wheel"
75+ type : string
7176
7277permissions :
7378 id-token : write
@@ -178,9 +183,9 @@ jobs:
178183 fi
179184
180185 if [[ -z "${ENV_SCRIPT}" ]]; then
181- ${CONDA_RUN} python setup.py bdist_wheel
186+ ${CONDA_RUN} ${{ inputs.build-command }}
182187 else
183- ${CONDA_RUN} ${ENV_SCRIPT} python setup.py bdist_wheel ${BUILD_PARAMS}
188+ ${CONDA_RUN} ${ENV_SCRIPT} ${{ inputs.build-command }} ${BUILD_PARAMS}
184189 fi
185190 - name : Run post-script
186191 working-directory : ${{ inputs.repository }}
You can’t perform that action at this time.
0 commit comments