Skip to content

Run monthly cron projects #4

Run monthly cron projects

Run monthly cron projects #4

Workflow file for this run

name: Run monthly cron projects
on:
schedule:
- cron: "0 0 1 * *" # every month at day 1 00
workflow_dispatch:
jobs:
Run-Scheduled-Exports:
runs-on: ubuntu-latest
env:
RAWDATA_API_AUTH_TOKEN: ${{ secrets.RAWDATA_API_AUTH_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Shoot monthly projects
run: python extract.py --fetch-scheduled-exports monthly