-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,17 +23,17 @@ jobs: | |
- name: Upgrade pip | ||
run: python -m pip install --upgrade pip | ||
- name: Install dependencies | ||
run: pip install -r common_crawler/requirements_common_crawler_action.txt | ||
run: pip install -r source_collectors/common_crawler/requirements_common_crawler_action.txt | ||
- name: Run script | ||
run: python common_crawler/main.py CC-MAIN-2024-10 *.gov police --config common_crawler/config.ini --pages 20 | ||
run: python source_collectors/common_crawler/main.py CC-MAIN-2024-10 *.gov police --config source_collectors/common_crawler/config.ini --pages 20 | ||
- name: Configure Git | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
- name: Add common_crawler cache and common_crawler batch_info | ||
run: | | ||
git add common_crawler/data/cache.json | ||
git add common_crawler/data/batch_info.csv | ||
git add source_collectors/common_crawler/data/cache.json | ||
git add source_collectors/common_crawler/data/batch_info.csv | ||
- name: Commit changes | ||
run: git commit -m "Update common_crawler cache and batch_info" | ||
- name: Push changes | ||
|