We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41b2416 commit 6ad255eCopy full SHA for 6ad255e
1 file changed
bioconda_utils/artifacts.py
@@ -89,6 +89,9 @@ def upload_pr_artifacts(config, repo, git_sha, dryrun=False, mulled_upload_targe
89
quay_login = os.environ['QUAY_LOGIN']
90
91
pattern = f"{tmpdir}/*/images/*.tar.gz"
92
+ if artifact_source == "circleci":
93
+ pattern = f"{tmpdir}/*/*/images/*.tar.gz"
94
+
95
logger.info(f"Checking for images at {pattern}.")
96
for img in glob.glob(pattern):
97
m = IMAGE_RE.match(os.path.basename(img))
0 commit comments