Daily Data Scraper #105
This file contains hidden or 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: Daily Data Scraper | |
| on: | |
| schedule: | |
| - cron: '0 22 * * *' # CET → Midnight in Germany during summer | |
| workflow_dispatch: | |
| jobs: | |
| scrape: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies | |
| run: | | |
| sudo apt update | |
| sudo apt install -y chromium-chromedriver | |
| pip install --upgrade pip setuptools wheel | |
| pip install --force-reinstall --no-cache-dir -r requirements.txt | |
| - name: Run scraping script | |
| env: | |
| LOGIN_USERNAME: ${{ secrets.LOGIN_USERNAME }} | |
| LOGIN_PASSWORD: ${{ secrets.LOGIN_PASSWORD }} | |
| run: python get_data.py | |
| - name: Commit and push results | |
| run: | | |
| git config user.name "github-actions" | |
| git config user.email "[email protected]" | |
| git add raw_data/ | |
| git commit -m "Daily update for $(date '+%d.%m.%Y')" || echo "Nothing to commit" | |
| git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:main | |