Package JSONL Files #1
This file contains 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: Package JSONL Files | |
on: | |
push: | |
paths: | |
- "**.jsonl" # Run this workflow when JSONL files are pushed | |
workflow_dispatch: # Run this workflow manually | |
jobs: | |
build_and_upload_artifact: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Archive JSONL files | |
run: tar -czf jsonl_files.tar.gz *.jsonl | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jsonl-files | |
path: jsonl_files.tar.gz |