Skip to content

Commit b2e73f8

Browse files
a
1 parent b041c90 commit b2e73f8

File tree

1 file changed

+3
-18
lines changed

1 file changed

+3
-18
lines changed

.github/workflows/tidy3d-python-client-release.yml

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -47,21 +47,6 @@ on:
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: |

0 commit comments

Comments
 (0)