Data Fetching #1254
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: Data Fetching | |
on: | |
push: | |
schedule: | |
- cron: "5 19 * * *" | |
workflow_dispatch: | |
jobs: | |
Fetch-Route-Data: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Setup Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
architecture: 'x64' | |
cache: 'pip' | |
cache-dependency-path: crawling/requirements.txt | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r ./crawling/requirements.txt | |
- name: Crawling resources | |
env: | |
REQUEST_LIMIT: "10" | |
run: | | |
set -o xtrace | |
python ./crawling/parseHoliday.py | |
python ./crawling/ctb.py | |
python ./crawling/kmb.py | |
python ./crawling/nlb.py | |
python ./crawling/lrtfeeder.py | |
python ./crawling/lightRail.py | |
python ./crawling/mtr.py | |
python ./crawling/parseJourneyTime.py | |
python ./crawling/parseGtfs.py | |
python ./crawling/parseGtfsEn.py | |
python ./crawling/gmb.py | |
python ./crawling/sunferry.py | |
python ./crawling/fortuneferry.py | |
python ./crawling/hkkf.py | |
python ./crawling/matchGtfs.py | |
python ./crawling/cleansing.py | |
python ./crawling/mergeRoutes.py | |
python crawling/routeCompare.py | |
- name: Archive crawling outputs | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: Crawled Files | |
retention-days: 14 | |
path: | | |
holiday.json | |
routeFareList* | |
routeList* | |
stopList* | |
routeTime.json | |
gtfs | |
gtfs.json | |
routeGtfs* | |
gtfs.zip | |
ROUTE_BUS.xml | |
- name: Update MD5 | |
run: md5sum routeFareList.min.json | cut -f1 -d ' ' | tr -d $'\n' > routeFareList.md5 | |
- name: Update resources | |
uses: test-room-7/action-update-file@v1 | |
with: | |
file-path: | | |
routeFareList.json | |
routeFareList.min.json | |
routeFareList.md5 | |
CNAME | |
route-ts/* | |
commit-msg: Update resources | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages |