From: Matthew Fernandez Date: Fri, 8 Jul 2022 02:29:15 +0000 (-0700) Subject: CI: call Windows ZIP artifact 'archive' not 'installer' X-Git-Tag: 5.0.1~47^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=26ab425ea0e356c5064bd5c4b983ff01b9bd0995;p=graphviz CI: call Windows ZIP artifact 'archive' not 'installer' This is what the website’s JSON has always called this artifact, but a mistake in 32b91edef64d1c726c88c7a7d6e68239399cc358 labelled this 'installer' instead. --- diff --git a/ci/deploy.py b/ci/deploy.py index 28a660d02..d4a647582 100644 --- a/ci/deploy.py +++ b/ci/deploy.py @@ -88,7 +88,7 @@ def get_format(path: Path) -> str: if path.suffix[1:].lower() == "exe": return "EXE installer" if path.suffix[1:].lower() == "zip": - return "ZIP installer" + return "ZIP archive" return path.suffix[1:].lower() def main(args: List[str]) -> int: # pylint: disable=missing-function-docstring