Skip to content

Commit 9220d95

Browse files
committed
always windows
1 parent c6478cd commit 9220d95

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/phantoms.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,17 @@ jobs:
9797

9898
- name: Decompress phantoms windows
9999
if: ${{ steps.cache-phantoms.outputs.cache-hit != 'true' && runner.os == 'Windows' }}
100-
run: powershell -command "Expand-Archive PHANTOMS.zip"
100+
run: powershell -command "Expand-Archive PHANTOMS.zip -DestinationPath . -Force"
101+
102+
- name: Debug Windows extraction
103+
if: ${{ steps.cache-phantoms.outputs.cache-hit != 'true' && runner.os == 'Windows' }}
104+
run: |
105+
echo "Contents of OpenNeuroPET-Phantoms directory:"
106+
ls -la OpenNeuroPET-Phantoms/
107+
echo "Contents of sourcedata directory:"
108+
ls -la OpenNeuroPET-Phantoms/sourcedata/
109+
echo "Contents of SiemensHRRT-JHU directory:"
110+
ls -la OpenNeuroPET-Phantoms/sourcedata/SiemensHRRT-JHU/ || echo "SiemensHRRT-JHU directory not found"
101111
102112
- name: Decompress phantoms posix
103113
if: ${{ steps.cache-phantoms.outputs.cache-hit != 'true' && runner.os != 'Windows' }}

0 commit comments

Comments
 (0)