We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 285cca3 commit e5b6f8cCopy full SHA for e5b6f8c
.github/workflows/merge_artifacts.yml
@@ -1,12 +1,24 @@
1
name: Merge Reddit Scraper Artifacts
2
3
on:
4
- workflow_dispatch: # manual trigger only for now
+ workflow_dispatch: # manual trigger for now
5
6
jobs:
7
merge-artifacts:
8
runs-on: ubuntu-latest
9
10
steps:
11
- - name: Print start message
12
- run: echo "Merging artifacts workflow started."
+
+ - 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