diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | ci/download_gha_artifacts.py | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -95,7 +95,7 @@ kit_local: find ~/Library/Caches/pip/wheels -name 'coverage-*' -delete download_kits: ## Download the built kits from GitHub. - python ci/download_gha_artifacts.py + python ci/download_gha_artifacts.py nedbat/coveragepy check_kits: ## Check that dist/* are well-formed. python -m twine check dist/* diff --git a/ci/download_gha_artifacts.py b/ci/download_gha_artifacts.py index e47d4fb9..d3d2e932 100644 --- a/ci/download_gha_artifacts.py +++ b/ci/download_gha_artifacts.py @@ -6,6 +6,7 @@ import datetime import os import os.path +import sys import time import zipfile @@ -43,7 +44,7 @@ def utc2local(timestring): return local.strftime("%Y-%m-%d %H:%M:%S") dest = "dist" -repo_owner = "nedbat/coveragepy" +repo_owner = sys.argv[1] temp_zip = "artifacts.zip" if not os.path.exists(dest): |