Skip to content

Commit b9cefd1

Browse files
committed
test
Signed-off-by: Yun Liu <yunl@nvidia.com>
1 parent b106a4c commit b9cefd1

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/blossom-ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,24 @@ jobs:
7373
run: |
7474
echo detect.excluded.detector.types=PIP >> application.properties
7575
76+
- name: Debug version info
77+
run: |
78+
git fetch --tags --force
79+
git rev-parse HEAD
80+
git tag --points-at HEAD || true
81+
git describe --tags --long --dirty || true
82+
python -c "import monai; print(monai.__version__)" || true
83+
pip show monai | sed -n '1,8p' || true
84+
python - <<'PY'
85+
import importlib.metadata as md
86+
try:
87+
print("metadata.version:", md.version("monai"))
88+
except Exception as e:
89+
print("metadata.version error:", e)
90+
PY
91+
sed -n '1,15p' CITATION.cff
92+
sed -n '1,25p' setup.cfg
93+
7694
- name: Run blossom action
7795
uses: NVIDIA/blossom-action@main
7896
env:

0 commit comments

Comments
 (0)