CI: fix docker build job name

#do_not_test
This commit is contained in:
Max Kainov 2024-02-29 12:32:05 +00:00
parent 7b55c61551
commit 64a2b6551a

View File

@ -25,7 +25,6 @@ from stopwatch import Stopwatch
from tee_popen import TeePopen
from upload_result_helper import upload_results
NAME = "Push to Dockerhub"
TEMP_PATH = Path(RUNNER_TEMP) / "docker_images_check"
TEMP_PATH.mkdir(parents=True, exist_ok=True)
@ -177,6 +176,9 @@ def main():
stopwatch = Stopwatch()
args = parse_args()
NAME = f"Push to Dockerhub {args.suffix}"
if args.push:
logging.info("login to docker hub")
docker_login()