Skip to content

Commit

Permalink
fixed the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jan 27, 2024
1 parent 87ce9e5 commit 7b20d29
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions scripts/docker_build_push.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,7 @@ def run_cmd(command: str) -> str:
or ""
)

match = re.search(r"SKIP_TAG=(.*)", output)
print("-=" * 30)
print(f"output: {output}")
print(f"LATEST_TAG: {LATEST_TAG}")
print("-=" * 30)
if match and match.group(1) == "SKIP_TAG::false":
if "SKIP_TAG::false" in output:
LATEST_TAG = "latest"

if TEST_ENV == "true":
Expand Down

0 comments on commit 7b20d29

Please sign in to comment.