File tree Expand file tree Collapse file tree 1 file changed +3
-18
lines changed Expand file tree Collapse file tree 1 file changed +3
-18
lines changed Original file line number Diff line number Diff line change 4747 description : ' Run submodule tests'
4848 type : boolean
4949 default : true
50-
51- deploy_testpypi :
52- description : ' Deploy to TestPyPI (recommended for testing)'
53- type : boolean
54- default : false
55-
56- deploy_pypi :
57- description : ' Deploy to production PyPI'
58- type : boolean
59- default : false
60-
61- deploy_aws :
62- description : ' Deploy to AWS CodeArtifact'
63- type : boolean
64- default : false
6550
6651 workflow_call :
6752 inputs :
@@ -148,9 +133,9 @@ jobs:
148133 CLIENT_TESTS : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.client_tests || inputs.client_tests }}
149134 CLI_TESTS : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.cli_tests || inputs.cli_tests }}
150135 SUBMODULE_TESTS : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.submodule_tests || inputs.submodule_tests }}
151- DEPLOY_TESTPYPI : ${{ github.event_name == 'workflow_dispatch' && github.event. inputs.deploy_testpypi || inputs.deploy_testpypi }}
152- DEPLOY_PYPI : ${{ github.event_name == 'workflow_dispatch' && github.event. inputs.deploy_pypi || inputs.deploy_pypi }}
153- DEPLOY_AWS : ${{ github.event_name == 'workflow_dispatch' && github.event. inputs.deploy_aws || inputs.deploy_aws }}
136+ DEPLOY_TESTPYPI : ${{ inputs.deploy_testpypi || false }}
137+ DEPLOY_PYPI : ${{ inputs.deploy_pypi || false }}
138+ DEPLOY_AWS : ${{ inputs.deploy_aws || false }}
154139 steps :
155140 - name : validate-tag-format
156141 run : |
You can’t perform that action at this time.
0 commit comments