gee_updated_api #42066
This file contains hidden or 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
| # Based on: https://github.com/samapriya/Earth-Engine-Datasets-List/blob/master/.github/workflows/gee_catalog.yml | |
| # Author: Roy Samapriya | |
| name: gee_updated_api | |
| on: | |
| push: | |
| branches: | |
| - master | |
| schedule: | |
| - cron: '0 2 * * 1' # weekly, every Monday at 2am | |
| 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.x' # install the python version needed | |
| - name: install python packages | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install earthengine-api | |
| - name: dataset upgrade | |
| run: | | |
| python3 ./.github/ee_up.py | |
| - name: file_check | |
| run: ls -l -a | |
| - name: commit files | |
| continue-on-error: true | |
| run: | | |
| today=$(date +"%Y-%m-%d %H:%M:%S") | |
| git config --local user.email "action@github.com" | |
| git config --local user.name "GitHub Action" | |
| git add -A | |
| git commit -m "updated earthengine version ${today}" -a | |
| - name: push changes | |
| continue-on-error: true | |
| uses: ad-m/github-push-action@v0.6.0 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: master |