Skip to content

Commit 20084c3

Browse files
committed
Switch to api url
1 parent 1d70936 commit 20084c3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,18 @@ jobs:
5757
cache = Path(pooch.os_cache("openfe_analysis"))
5858
cache.mkdir(parents=True, exist_ok=True)
5959
60-
# Files to download: direct Zenodo URLs + MD5 hashes
60+
# Files to download: Zenodo API 'content' URLs + MD5 hashes
6161
files = {
6262
"openfe_analysis_simulation_output.tar.gz": (
63-
"https://zenodo.org/records/17916322/files/openfe_analysis_simulation_output.tar.gz",
63+
"https://zenodo.org/api/records/17916322/files/openfe_analysis_simulation_output.tar.gz/content",
6464
"09752f2c4e5b7744d8afdee66dbd1414"
6565
),
6666
"openfe_analysis_skipped.tar.gz": (
67-
"https://zenodo.org/records/17916322/files/openfe_analysis_skipped.tar.gz",
67+
"https://zenodo.org/api/records/17916322/files/openfe_analysis_skipped.tar.gz/content",
6868
"3840d044299caacc4ccd50e6b22c0880"
6969
),
7070
}
71+
7172
# Download and untar each file
7273
for fname, (url, md5) in files.items():
7374
pooch.retrieve(

0 commit comments

Comments
 (0)