Skip to content

Commit e5b6f8c

Browse files
authored
Update merge_artifacts.yml
1 parent 285cca3 commit e5b6f8c

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed
Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
11
name: Merge Reddit Scraper Artifacts
22

33
on:
4-
workflow_dispatch: # manual trigger only for now
4+
workflow_dispatch: # manual trigger for now
55

66
jobs:
77
merge-artifacts:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- name: Print start message
12-
run: echo "Merging artifacts workflow started."
11+
12+
- name: Checkout repo
13+
uses: actions/checkout@v4
14+
15+
- name: Download ALL artifacts
16+
uses: actions/download-artifact@v4
17+
with:
18+
pattern: "*"
19+
path: merged_raw # all artifacts extracted here
20+
21+
- name: List downloaded artifacts
22+
run: |
23+
echo "Downloaded artifacts:"
24+
ls -R merged_raw

0 commit comments

Comments
 (0)