Skip to content

Commit

Permalink
Test daily exports with .py extension
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma committed Jan 31, 2024
1 parent cd5fc26 commit 25cf55a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run_daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ name: Run daily cron projects
on:
schedule:
- cron: "0 6 * * *" # Run every day at 6 UTC

push:
branches:
- main
jobs:
Run-Scheduled-Exports:
runs-on: ubuntu-latest
Expand All @@ -18,4 +20,4 @@ jobs:
python-version: "3.11"

- name: Shoot daily projects
run: python osm2hdx_extractor --fetch-scheduled-exports daily
run: python osm2hdx_extractor.py --fetch-scheduled-exports daily
2 changes: 1 addition & 1 deletion .github/workflows/run_monthly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
python-version: "3.11"

- name: Shoot monthly projects
run: python osm2hdx_extractor --fetch-scheduled-exports monthly
run: python osm2hdx_extractor.py --fetch-scheduled-exports monthly
2 changes: 1 addition & 1 deletion .github/workflows/run_weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
python-version: "3.11"

- name: Shoot weekly projects
run: python osm2hdx_extractor --fetch-scheduled-exports weekly
run: python osm2hdx_extractor.py --fetch-scheduled-exports weekly

0 comments on commit 25cf55a

Please sign in to comment.