From 962dbf89c8951746125d60fe0b881d0c7f8edc9b Mon Sep 17 00:00:00 2001 From: Sebastien Date: Mon, 28 Nov 2022 10:44:59 -0500 Subject: [PATCH] Add more auth methods for build - [skip actions] --- docker/build_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/build_tools.py b/docker/build_tools.py index 0f97f7a7..bc8e9fae 100644 --- a/docker/build_tools.py +++ b/docker/build_tools.py @@ -886,7 +886,7 @@ def push_if_change(repo: Repository, token: str, source_path: str, manif_json): remote: Remote = repo.remotes['origin'] auth_methods = ['x-access-token','x-oauth-basic'] for method in auth_methods: - if push_with_method('x-access-token', token, remote, [reference]): + if push_with_method(auth_methods, token, remote, [reference]): print(f'::notice Web installer updated for {format_artifact_from_manifest(manif_json)}') return