catalog #214
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
on: | |
schedule: | |
- cron: '0 23 * * *' | |
workflow_dispatch: | |
name: catalog | |
jobs: | |
metadata_catalog: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
OSN_KEY: ${{ secrets.OSN_KEY }} | |
OSN_SECRET: ${{ secrets.OSN_SECRET }} | |
container: eco4cast/rocker-neon4cast:latest | |
steps: | |
- run: git config --system --add safe.directory '*' | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
fetch-depth: 0 | |
set-safe-directory: '*' | |
- name: install validator | |
run: | | |
pip install stac-validator | |
- name: Render metadata | |
shell: Rscript {0} | |
run: source("catalog/model_metadata.R") | |
- name: Render catalog | |
shell: Rscript {0} | |
run: source("catalog/catalog.R") | |
- name: Commit and Push | |
run: | | |
git pull | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add catalog/* . | |
git commit -a -m "update catalog" || echo "nothing to commit" | |
git push https://${GITHUB_PAT}:${GITHUB_PAT}@github.com/${GITHUB_REPOSITORY} | |
forecasts: | |
needs: metadata_catalog | |
if: success() || failure() | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
OSN_KEY: ${{ secrets.OSN_KEY }} | |
OSN_SECRET: ${{ secrets.OSN_SECRET }} | |
container: eco4cast/rocker-neon4cast:latest | |
steps: | |
- run: git config --system --add safe.directory '*' | |
- uses: actions/checkout@v3 | |
with: | |
ref: main | |
fetch-depth: 0 | |
set-safe-directory: '*' | |
- name: install validator | |
run: | | |
pip install stac-validator | |
- name: Render | |
shell: Rscript {0} | |
run: source('catalog/forecasts/forecast_models.R') | |
- name: Commit and Push | |
run: | | |
git pull | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add catalog/* . | |
git commit -a -m "update catalog" || echo "nothing to commit" | |
git push https://${GITHUB_PAT}:${GITHUB_PAT}@github.com/${GITHUB_REPOSITORY} | |
scores: | |
needs: forecasts | |
if: success() || failure() | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
OSN_KEY: ${{ secrets.OSN_KEY }} | |
OSN_SECRET: ${{ secrets.OSN_SECRET }} | |
container: eco4cast/rocker-neon4cast:latest | |
steps: | |
- run: git config --system --add safe.directory '*' | |
- uses: actions/checkout@v3 | |
with: | |
ref: main | |
fetch-depth: 0 | |
set-safe-directory: '*' | |
- name: install validator | |
run: | | |
pip install stac-validator | |
- name: Render | |
shell: Rscript {0} | |
run: source('catalog/scores/scores_models.R') | |
- name: Commit and Push | |
run: | | |
git pull | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add catalog/* . | |
git commit -a -m "update catalog" || echo "nothing to commit" | |
git push https://${GITHUB_PAT}:${GITHUB_PAT}@github.com/${GITHUB_REPOSITORY} | |
inventory: | |
needs: scores | |
if: success() || failure() | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
OSN_KEY: ${{ secrets.OSN_KEY }} | |
OSN_SECRET: ${{ secrets.OSN_SECRET }} | |
container: eco4cast/rocker-neon4cast:latest | |
steps: | |
- run: git config --system --add safe.directory '*' | |
- uses: actions/checkout@v3 | |
with: | |
ref: main | |
fetch-depth: 0 | |
set-safe-directory: '*' | |
- name: install validator | |
run: | | |
pip install stac-validator | |
- name: Render | |
shell: Rscript {0} | |
run: source('catalog/inventory/create_inventory_page.R') | |
- name: Commit and Push | |
run: | | |
git pull | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add catalog/* . | |
git commit -a -m "update catalog" || echo "nothing to commit" | |
git push https://${GITHUB_PAT}:${GITHUB_PAT}@github.com/${GITHUB_REPOSITORY} | |
summaries: | |
needs: inventory | |
if: success() || failure() | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
OSN_KEY: ${{ secrets.OSN_KEY }} | |
OSN_SECRET: ${{ secrets.OSN_SECRET }} | |
container: eco4cast/rocker-neon4cast:latest | |
steps: | |
- run: git config --system --add safe.directory '*' | |
- uses: actions/checkout@v3 | |
with: | |
ref: main | |
fetch-depth: 0 | |
set-safe-directory: '*' | |
- name: install validator | |
run: | | |
pip install stac-validator | |
- name: Render | |
shell: Rscript {0} | |
run: source('catalog/summaries/summaries_models.R') | |
- name: Commit and Push | |
run: | | |
git pull | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add catalog/* . | |
git commit -a -m "update catalog" || echo "nothing to commit" | |
git push https://${GITHUB_PAT}:${GITHUB_PAT}@github.com/${GITHUB_REPOSITORY} | |
noaa: | |
needs: summaries | |
if: success() || failure() | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
OSN_KEY: ${{ secrets.OSN_KEY }} | |
OSN_SECRET: ${{ secrets.OSN_SECRET }} | |
container: eco4cast/rocker-neon4cast:latest | |
steps: | |
- run: git config --system --add safe.directory '*' | |
- uses: actions/checkout@v3 | |
with: | |
ref: main | |
fetch-depth: 0 | |
set-safe-directory: '*' | |
- name: install validator | |
run: | | |
pip install stac-validator | |
- name: Render | |
shell: Rscript {0} | |
run: source('catalog/noaa_forecasts/noaa_forecasts.R') | |
- name: Commit and Push | |
run: | | |
git pull | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add catalog/* . | |
git commit -a -m "update catalog" || echo "nothing to commit" | |
git push https://${GITHUB_PAT}:${GITHUB_PAT}@github.com/${GITHUB_REPOSITORY} | |
targets_sites: | |
needs: noaa | |
if: success() || failure() | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
OSN_KEY: ${{ secrets.OSN_KEY }} | |
OSN_SECRET: ${{ secrets.OSN_SECRET }} | |
container: eco4cast/rocker-neon4cast:latest | |
steps: | |
- run: git config --system --add safe.directory '*' | |
- uses: actions/checkout@v3 | |
with: | |
ref: main | |
fetch-depth: 0 | |
set-safe-directory: '*' | |
- name: install validator | |
run: | | |
pip install stac-validator | |
- name: Render targets | |
shell: Rscript {0} | |
run: source('catalog/targets/create_targets_page.R') | |
- name: Render sites | |
shell: Rscript {0} | |
run: source('catalog/sites/build_sites_page.R') | |
- name: Commit and Push | |
run: | | |
git pull | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add catalog/* . | |
git commit -a -m "update catalog" || echo "nothing to commit" | |
git push https://${GITHUB_PAT}:${GITHUB_PAT}@github.com/${GITHUB_REPOSITORY} | |
Healthcheck: | |
needs: [metadata_catalog, forecasts, scores, inventory, summaries, noaa, targets_sites] | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
container: eco4cast/rocker-neon4cast:latest | |
steps: | |
- name: Call Healthcheck | |
run: | | |
curl -m 10 --retry 5 https://hc-ping.com/22fcd257-7930-455c-948d-0f913743b0c3 |