Update UU and RACMO24 names #144
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: Update | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
paths: | |
- CMIP6_downscaling_plans.csv | |
pull_request: | |
branches: [ main ] | |
paths: | |
- CMIP6_downscaling_plans.csv | |
jobs: | |
update-tables: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup conda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
environment-file: environment.yml | |
- name: Update tables | |
run: | | |
which -a python | |
conda activate test | |
make update | |
- name: Commit | |
run: | | |
git config --global user.name 'GitHub Actions' | |
git config --global user.email 'actions@github.com' | |
git commit -am "[Actions] Update" | |
git push |