Fix execute_secure call

This commit is contained in:
bom 2023-07-18 12:22:50 +02:00
parent a53c28b690
commit 41c41cf9c3

View file

@ -64,7 +64,8 @@ class ImageApi:
def dockerhub_login(self, username: str, password: str): def dockerhub_login(self, username: str, password: str):
self.execution_api.execute_secure( self.execution_api.execute_secure(
f"docker login --username {username} --password {password}" f"docker login --username {username} --password {password}",
"docker login --username ***** --password *****"
) )
def dockerhub_publish(self, name: str, username: str, tag: str): def dockerhub_publish(self, name: str, username: str, tag: str):