-
Notifications
You must be signed in to change notification settings - Fork 4.6k
airbyte-ci: Switch to prod pypi #34606
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
ec99e79
278fe01
e6c6e04
d172818
e79e421
ef5f5a7
55ac27b
58e4005
b954efb
0e70342
97a9702
d3867ce
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,12 +46,16 @@ def __init__( | |
s3_build_cache_access_key_id: Optional[str] = None, | ||
s3_build_cache_secret_key: Optional[str] = None, | ||
use_local_cdk: bool = False, | ||
python_registry_token: Optional[str] = None, | ||
python_registry_url: Optional[str] = None, | ||
Comment on lines
+49
to
+50
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we add a validation on init that these keyword arguments are not None when There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. added a check to the step - if the python publish logic is hit, it will fail with a descriptive error in case the registry or token isn't set properly. |
||
) -> None: | ||
self.pre_release = pre_release | ||
self.spec_cache_bucket_name = spec_cache_bucket_name | ||
self.metadata_bucket_name = metadata_bucket_name | ||
self.spec_cache_gcs_credentials = sanitize_gcs_credentials(spec_cache_gcs_credentials) | ||
self.metadata_service_gcs_credentials = sanitize_gcs_credentials(metadata_service_gcs_credentials) | ||
self.python_registry_token = python_registry_token | ||
self.python_registry_url = python_registry_url | ||
pipeline_name = f"Publish {connector.technical_name}" | ||
pipeline_name = pipeline_name + " (pre-release)" if pre_release else pipeline_name | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.