Download and Build #79
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: Download and Build | |
on: | |
schedule: | |
- cron: '0 0 1 * *' | |
- cron: '0 0 10 * *' | |
- cron: '0 0 25 * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Set up Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip | |
python -m pip install -U requests==2.25.1 beautifulsoup4==4.10.0 pandas==1.3.5 openpyxl==3.0.9 | |
python -m pip install -U tabula-py==2.8.2 | |
- name: Download files | |
run: | | |
cd data && python download.py | |
- name: Upload ruc | |
run: | | |
cd data && curl -T ruc.db ${{ secrets.RUC_DB_URL }} -u "${{secrets.RUC_USER}}:${{secrets.RUC_PASSWORD}}" | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v7 | |
with: | |
author_name: github-actions[bot] | |
author_email: github-actions[bot]@users.noreply.github.com | |
message: 'update ruc.zip' | |
add: '.' |