We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b106a4c commit b9cefd1Copy full SHA for b9cefd1
.github/workflows/blossom-ci.yml
@@ -73,6 +73,24 @@ jobs:
73
run: |
74
echo detect.excluded.detector.types=PIP >> application.properties
75
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
+
94
- name: Run blossom action
95
uses: NVIDIA/blossom-action@main
96
env:
0 commit comments