Zubin pushed to branch wip/24093 at Glasgow Haskell Compiler / GHC
Commits:
-
48cf32db
by Zubin Duggal at 2025-07-02T18:25:57+05:30
1 changed file:
Changes:
... | ... | @@ -134,6 +134,9 @@ def fetch_artifacts(release: str, pipeline_id: int, |
134 | 134 | logging.info(f'extracted docs {f} to {dest}')
|
135 | 135 | index_path = destdir / 'docs' / 'index.html'
|
136 | 136 | index_path.replace(dest / 'index.html')
|
137 | + pdfs = list(destdir.glob('*.pdf'))
|
|
138 | + for f in pdfs:
|
|
139 | + f.replace(dest / f.name)
|
|
137 | 140 | elif job.name == 'hackage-doc-tarball':
|
138 | 141 | dest = dest_dir / 'hackage_docs'
|
139 | 142 | logging.info(f'moved hackage_docs to {dest}')
|