Merge Reddit Scraper Artifacts #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Merge Reddit Scraper Artifacts | |
| on: | |
| workflow_dispatch: # manual trigger for now | |
| jobs: | |
| merge-artifacts: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Download ALL artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| pattern: "*" | |
| path: merged_raw # all artifacts extracted here | |
| - name: List downloaded artifacts | |
| run: | | |
| echo "Downloaded artifacts:" | |
| ls -R merged_raw |