Valwin center scrap #28200
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: Valwin center scrap | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
# Allow running manually | |
workflow_dispatch: | |
jobs: | |
scrape: | |
name: "Valwin center scrap" | |
runs-on: "ubuntu-20.04" | |
steps: | |
- uses: "actions/checkout@v2" | |
with: | |
token: ${{ secrets.PAT_GRZ }} | |
- uses: "actions/setup-python@v2" | |
with: | |
python-version: "3.8" | |
- name: "Install" | |
run: make install | |
- name: "Valwin scrap..." | |
run: make valwinscrap | |
- name: "Copy output file" | |
run: cp data/output/valwin_centers.json . | |
- name: "Get folder from data-auto" | |
run: | | |
git clone --branch data-auto https://github.com/CovidTrackerFr/vitemadose.git tmp/ | |
cp -R tmp/data/output/* data/output | |
rm -rf tmp/ | |
cp valwin_centers.json valwin_center_list.json | |
cp valwin_centers.json valwin_center_list.json data/output | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Updated Valwin centers | |
push_options: "--force HEAD:data-auto" |