Download and Commit GeoJSON file #276
This file contains 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: Download and Commit GeoJSON file | |
on: | |
schedule: | |
- cron: '0 3 * * *' # Run every day at 06:00 (UTC +3) | |
workflow_dispatch: #Allow for manual activation | |
jobs: | |
download_and_commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Run download.py | |
run: python download.py | |
- name: Check if file has changed | |
id: check_changes | |
run: | | |
git diff --exit-code --quiet || echo "File has changed" | |
- name: Commit changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name pavmeth22 | |
git add el_gdf.geojson | |
git commit -m "Update el_gdf.geojson" || echo "No changes to commit" | |
git push |