Skip to content

Commit b041c90

Browse files
a
1 parent 02fd409 commit b041c90

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
deploy_testpypi:
1212
description: 'Deploy to TestPyPI (recommended first step)'
1313
type: boolean
14-
default: true
14+
default: false
1515

1616
deploy_pypi:
1717
description: 'Deploy to production PyPI'
@@ -207,13 +207,11 @@ jobs:
207207

208208
deploy-aws-codeartifact:
209209
name: deploy-to-aws-codeartifact
210-
needs: [validate-inputs, build-package, deploy-testpypi]
211-
# Run in parallel with PyPI after TestPyPI succeeds
210+
needs: [validate-inputs, build-package]
212211
if: |
213212
always() &&
214213
needs.validate-inputs.outputs.deploy_aws == 'true' &&
215-
needs.build-package.result == 'success' &&
216-
(needs.deploy-testpypi.result == 'success' || needs.deploy-testpypi.result == 'skipped')
214+
needs.build-package.result == 'success'
217215
runs-on: ubuntu-latest
218216
steps:
219217
- name: download-artifacts

0 commit comments

Comments
 (0)