Scale N Offset Parameters #725
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: Scale N Offset Parameters | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
if: ${{ github.repository_owner == 'r-earthengine' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.7' | |
- name: dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
- name: execute | |
run: | | |
python ./.github/scripts/update_gee_stac_scale_offset.py | |
- name: commit | |
continue-on-error: true | |
run: | | |
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 commit -m "Updated GEE STAC scale and offset list ${today} UTC" -a | |
- name: push | |
continue-on-error: true | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: master |