Skip to content

Commit 9b14410

Browse files
committed
add print message
for debugging deployment the hard way
1 parent 647cfe7 commit 9b14410

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/prepare_to_deploy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
from typing import Any, Dict, List
55

66
import typer
7-
from packaging.version import Version
8-
97
from bioimageio.spec.shared import yaml
8+
from packaging.version import Version
109
from utils import iterate_known_resource_versions
1110

1211

@@ -72,6 +71,7 @@ def main(
7271
for updated_rdf_path in static_validation_artifact_dir.glob(f"{resource_id_pattern}/*/rdf.yaml"):
7372
updated_rdf_gh_pages_path = gh_pages / "rdfs" / updated_rdf_path.relative_to(static_validation_artifact_dir)
7473
updated_rdf_gh_pages_path.parent.mkdir(exist_ok=True, parents=True)
74+
print(f"copy to deploy: {updated_rdf_path} -> {updated_rdf_gh_pages_path}")
7575
shutil.copy(str(updated_rdf_path), str(updated_rdf_gh_pages_path))
7676

7777
updated_rdf_deploy_path = dist / "rdfs" / updated_rdf_path.relative_to(static_validation_artifact_dir)

0 commit comments

Comments
 (0)