We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fa5d29 commit 361638fCopy full SHA for 361638f
2 files changed
packaging_automation/citus_package.py
@@ -401,6 +401,7 @@ def build_packages(
401
input_output_parameters: InputOutputParameters,
402
is_test: bool = False,
403
) -> None:
404
+ os.environ["GH_TOKEN"] = github_token
405
os_name, os_version = decode_os_and_release(platform)
406
release_versions, nightly_versions = get_postgres_versions(
407
platform, input_output_parameters.input_files_dir
packaging_automation/tests/test_citus_package_utils.py
@@ -46,7 +46,7 @@
46
def setup_module():
47
if not os.path.exists("packaging_test"):
48
run(
49
- f"git clone --branch all-citus-unit-tests https://github.com/citusdata/packaging.git {PACKAGING_SOURCE_FOLDER}"
+ f"git clone --branch all-citus-unit-tests https://x-access-token:{GH_TOKEN}@github.com/citusdata/packaging.git {PACKAGING_SOURCE_FOLDER}"
50
)
51
52
0 commit comments