Package JSONL Files #3
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: Upload JSONL files | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jsonl-files | |
path: '*.jsonl' |