diff --git a/.github/workflows/monthly_reporting.yaml b/.github/workflows/monthly_reporting.yaml new file mode 100644 index 0000000..013409c --- /dev/null +++ b/.github/workflows/monthly_reporting.yaml @@ -0,0 +1,25 @@ +name: Monthly reporting + +on: + schedule: + - cron: "0 8 1 * *" + workflow_dispatch: + push: + branches: + - zimit_report + +jobs: + + zimit-tasks: + runs-on: ubuntu-24.04 + steps: + - uses: actions/setup-python@v4 + with: + python-version: 3.12s + architecture: x64 + - name: Download script + run: curl -O https://raw.githubusercontent.com/openzim/zimfarm/refs/heads/main/dispatcher/backend/maint-scripts/monthly_report_tasks.py + - name: Create report + run: ZF_URI="https://api.farm.zimit.kiwix.org/v1" FILE_PREFIX="farm.zimit.kiwix.org_tasks_" python monthly_report_tasks.py -- + - name: Upload report + run: curl -u "${{ secrets.DRIVE_CREDENTIALS }}" -T "*.csv" -sw '%{http_code}' "https://drive.zimit.kiwix.org/reports/" \ No newline at end of file