Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,21 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
uses: actions/checkout@v4

- name: Run make
- name: Build
run: make

deploy:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.7.1
uses: JamesIves/github-pages-deploy-action@v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: output
folder: output
25 changes: 25 additions & 0 deletions pattern/ISIMIP2a/DerivedOutputData/Untitled2024.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"path": [
"(?P<simulation_round>[A-Za-z0-9]+)",
"(?P<product>[A-Za-z]+)",
"(?P<publication>[A-Za-z0-9-]+)",
"(?P<model>[A-Za-z0-9-+._]+)",
"(?P<climate_forcing>[a-z0-9-]+)",
"(?P<period>[a-z0-9-_]+)"
],
"file": [
"(?P<publication>(cama-flood))",
"(?P<model>[a-z0-9-]+)",
"(?P<climate_forcing>[a-z0-9-]+)",
"(?P<bias_adjustment>[a-z0-9-]+)",
"(?P<climate_scenario>[a-z0-9-]+)",
"(?P<soc_scenario>[a-z0-9-]+)",
"(?P<sens_scenario>(co2))",
"(?P<variable>[a-z0-9]+)(-(?P<prot>[0-9a-z]+))?",
"(?P<resolution>[a-z0-9]+)",
"(?P<region>(global))",
"(?P<time_step>[a-z0-9-]+)",
"(?P<start_year>\\d{4})",
"(?P<end_year>\\d{4})"
]
}
25 changes: 25 additions & 0 deletions pattern/ISIMIP2b/DerivedOutputData/Untitled2024.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"path": [
"(?P<simulation_round>[A-Za-z0-9]+)",
"(?P<product>[A-Za-z]+)",
"(?P<publication>[A-Za-z0-9-]+)",
"(?P<model>[A-Za-z0-9-+._]+)",
"(?P<climate_forcing>[a-z0-9-]+)",
"(?P<period>[a-z0-9-_]+)"
],
"file": [
"(?P<publication>(cama-flood))",
"(?P<model>[a-z0-9-]+)",
"(?P<climate_forcing>[a-z0-9-]+)",
"(?P<bias_adjustment>[a-z0-9-]+)",
"(?P<climate_scenario>[a-z0-9-]+)",
"(?P<soc_scenario>[a-z0-9-]+)",
"(?P<sens_scenario>(co2))",
"(?P<variable>[a-z0-9]+)(-(?P<prot>[0-9a-z]+))?",
"(?P<resolution>[a-z0-9]+)",
"(?P<region>(global))",
"(?P<time_step>[a-z0-9-]+)",
"(?P<start_year>\\d{4})",
"(?P<end_year>\\d{4})"
]
}