Skip to content

Commit

Permalink
fix: Ignore Zstandard-packed repodata artifact
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Bargull <[email protected]>
  • Loading branch information
mbargull committed Apr 15, 2024
1 parent 4bf095e commit e478e52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioconda_utils/artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def get_circleci_artifacts(check_run, platform):
else:
for artifact in json_job["items"]:
artifact_url = artifact["url"]
if artifact_url.endswith(".html") or artifact_url.endswith(".json") or artifact_url.endswith(".json.bz2"):
if artifact_url.endswith((".html", ".json", ".json.bz2", ".json.zst")):
continue
else:
yield artifact_url
Expand Down

0 comments on commit e478e52

Please sign in to comment.