Auto update #426
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: Auto update | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "25 3 * * *" # https://crontab.guru/ | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v4 | |
- name: setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
# - name: Install GDAL | |
# run: | | |
# python -m pip install --upgrade pip | |
# pip install --no-cache-dir Cython | |
# pip install --find-links=https://girder.github.io/large_image_wheels --no-cache GDAL | |
# - name: Test GDAL installation | |
# run: | | |
# python -c "from osgeo import gdal" | |
# gdalinfo --version | |
- name: install dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: execute python script | |
run: | | |
python auto_update.py | |
env: | |
EARTHENGINE_TOKEN: ${{ secrets.EARTHENGINE_TOKEN }} | |
- name: file_check | |
run: ls -l -a | |
- name: commit files | |
continue-on-error: true | |
run: | | |
today=$(date +"%Y-%m-%d") | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add -A | |
git commit -m "Updated datasets ${today} UTC" -a | |
git pull origin main | |
- name: push changes | |
continue-on-error: true | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: main |