Skip to content

Commit

Permalink
Update updated_earthengine_api.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ambarja authored Jul 4, 2024
1 parent ebab16a commit 8cd032a
Showing 1 changed file with 17 additions and 20 deletions.
37 changes: 17 additions & 20 deletions .github/workflows/updated_earthengine_api.yaml
Original file line number Diff line number Diff line change
@@ -1,51 +1,48 @@
# Based on: https://github.com/samapriya/Earth-Engine-Datasets-List/blob/master/.github/workflows/gee_catalog.yml
# Author: Roy Samapriya
# Edited: Antony Barja
# Based on: https://github.com/samapriya/Earth-Engine-Datasets-List/blob/master/.github/workflows/gee_catalog.yml
# Author: Roy Samapriya
name: gee_catalog_lightweight
on:
push:
branches:
- master
schedule:
- cron: '0 * * * *' # Ejecutar cada hora
- cron: '0 * * * *'

jobs:
build:
runs-on: ubuntu-latest
steps:

- name: checkout repo content
uses: actions/checkout@v2 # Checkout the repository content to GitHub runner
uses: actions/checkout@v2 # checkout the repository content to github runner

- name: setup python
uses: actions/setup-python@v2

with:
python-version: '3.7.7' # install the python version needed

- name: install python packages
run: |
python -m pip install --upgrade pip
pip install earthengine-api # Instala cualquier paquete adicional necesario
python -m pip install --upgrade pip
pip install earthengine-api
- name: dataset upgrade
run: |
python3 .github/db_up.py # Ejecuta el script db_up.py para actualizar dataset.json
- name: delete old dataset.json
run: |
rm -f inst/dataset.json # Elimina el archivo dataset.json anterior si existe
python3 ./.github/ee_up.py
- name: file_check
run: ls -l -a
- name: commit files
continue-on-error: true # Continuar si no hay cambios para comprometer
continue-on-error: true
run: |
cd $GITHUB_WORKSPACE
today=$(date +"%Y-%m-%d %H:%M:%S")
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git status # Verifica el estado de los archivos antes de commit
git commit -m "updated earthengine version ${today}" -a || echo "No changes to commit" # Commit con mensaje dinámico de fecha
git commit -m "updated earthengine version ${today}" -a
- name: push changes
continue-on-error: true # Continuar si no hay cambios para empujar
continue-on-error: true
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: master # Empuja los cambios a la rama master
branch: master

0 comments on commit 8cd032a

Please sign in to comment.