Skip to content

Update data

Update data #871

Workflow file for this run

name: Update data
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: python update.py
- run: |
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "updated" || true
git push