Skip to content

Commit ed9d818

Browse files
committed
Fix artifact download for docs when using pattern
1 parent 11e105a commit ed9d818

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,15 +226,16 @@ jobs:
226226
- name: Download data packages
227227
uses: actions/download-artifact@v4
228228
with:
229-
pattern: dist-basemap_data*
230229
path: ./data_packages/
230+
pattern: "dist-basemap_data*"
231231
merge-multiple: true
232232

233233
- name: Download basemap wheel for Linux
234234
uses: actions/download-artifact@v4
235235
with:
236-
name: dist-basemap-wheels-ubuntu-*
237236
path: ./wheels/
237+
pattern: "dist-basemap-wheels-ubuntu-*"
238+
merge-multiple: true
238239

239240
- name: Install packages
240241
run: |

0 commit comments

Comments
 (0)