Skip to content

daily-scrape

daily-scrape #215

Workflow file for this run

name: daily-scrape
on:
schedule:
- cron: "0 8 * * *" # might pacific time
workflow_dispatch:
jobs:
run-scraper:
runs-on: ubuntu-latest
environment: MAHASVIN_SECRETS
env:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run scraper
run: python scraper.py