From e200f1e97ee3db41326c3225a4986471435120e4 Mon Sep 17 00:00:00 2001 From: Augustin Date: Mon, 16 Oct 2023 17:48:29 +0200 Subject: [PATCH] airbyte-ci: fix None docker creds (#31455) --- airbyte-ci/connectors/pipelines/README.md | 1 + airbyte-ci/connectors/pipelines/pipelines/contexts.py | 5 ++--- airbyte-ci/connectors/pipelines/pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/airbyte-ci/connectors/pipelines/README.md b/airbyte-ci/connectors/pipelines/README.md index 477720409cfa..351028cc3aa2 100644 --- a/airbyte-ci/connectors/pipelines/README.md +++ b/airbyte-ci/connectors/pipelines/README.md @@ -425,6 +425,7 @@ This command runs the Python tests for a airbyte-ci poetry package. ## Changelog | Version | PR | Description | | ------- | ---------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | +| 1.9.1 | [#31455](https://github.com/airbytehq/airbyte/pull/31455) | Fix `None` docker credentials on publish. | | 1.9.0 | [#30520](https://github.com/airbytehq/airbyte/pull/30520) | New commands: `bump-version`, `upgrade-base-image`, `migrate-to-base-image`. | | 1.8.0 | [#30520](https://github.com/airbytehq/airbyte/pull/30520) | New commands: `bump-version`, `upgrade-base-image`, `migrate-to-base-image`. | | 1.7.2 | [#31343](https://github.com/airbytehq/airbyte/pull/31343) | Bind Pytest integration tests to a dockerhost. | diff --git a/airbyte-ci/connectors/pipelines/pipelines/contexts.py b/airbyte-ci/connectors/pipelines/pipelines/contexts.py index 903f1116eedf..08f0366cb2ab 100644 --- a/airbyte-ci/connectors/pipelines/pipelines/contexts.py +++ b/airbyte-ci/connectors/pipelines/pipelines/contexts.py @@ -547,9 +547,6 @@ def __init__( 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.docker_hub_username = docker_hub_username - self.docker_hub_password = docker_hub_password - pipeline_name = f"Publish {connector.technical_name}" pipeline_name = pipeline_name + " (pre-release)" if pre_release else pipeline_name @@ -569,6 +566,8 @@ def __init__( reporting_slack_channel=reporting_slack_channel, ci_gcs_credentials=ci_gcs_credentials, should_save_report=True, + docker_hub_username=docker_hub_username, + docker_hub_password=docker_hub_password, ) @property diff --git a/airbyte-ci/connectors/pipelines/pyproject.toml b/airbyte-ci/connectors/pipelines/pyproject.toml index 790e19968c70..51ea3dceb74e 100644 --- a/airbyte-ci/connectors/pipelines/pyproject.toml +++ b/airbyte-ci/connectors/pipelines/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pipelines" -version = "1.9.0" +version = "1.9.1" description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines" authors = ["Airbyte "]