We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5b6f8c commit 03802a5Copy full SHA for 03802a5
.github/workflows/merge_artifacts.yml
@@ -12,13 +12,19 @@ jobs:
12
- name: Checkout repo
13
uses: actions/checkout@v4
14
15
- - name: Download ALL artifacts
+ # Create directory so listing never fails
16
+ - name: Prepare merged_raw folder
17
+ run: mkdir -p merged_raw
18
+
19
+ # Download ONLY artifacts matching your real naming
20
+ - name: Download all scraper artifacts
21
uses: actions/download-artifact@v4
22
with:
- pattern: "*"
- path: merged_raw # all artifacts extracted here
23
+ pattern: "reddit-scraper-data-*"
24
+ path: merged_raw
25
+ merge-multiple: true
26
27
- name: List downloaded artifacts
28
run: |
- echo "Downloaded artifacts:"
29
+ echo "Downloaded artifacts inside merged_raw:"
30
ls -R merged_raw
0 commit comments