Skip to content

Commit 31f99eb

Browse files
committed
Merge branch 'main' into landsurfacetemp
2 parents 04686f2 + 1a54359 commit 31f99eb

49 files changed

Lines changed: 4467 additions & 682 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dvc/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/config.local
2+
/tmp
3+
/cache

.dvc/config

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[core]
2+
remote = wflow-testdata-ro
3+
['remote "wflow-testdata-ro"']
4+
url = s3://wflow/testdata
5+
endpointurl = https://s3.deltares.nl/
6+
allow_anonymous_login = true
7+
region = eu-west-1
8+
['remote "wflow-testdata-rw"']
9+
url = s3://wflow/testdata
10+
endpointurl = https://s3.deltares.nl/
11+
region = eu-west-1

.dvcignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Add patterns of files dvc should ignore, which could improve
2+
# the performance. Learn more at
3+
# https://dvc.org/doc/user-guide/dvcignore

.github/ISSUE_TEMPLATE/documentation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ body:
1010
options:
1111
- label: >
1212
I have checked that the issue still exists on the latest versions of the docs
13-
on `master` [here](https://github.com/Deltares/Wflow.jl)
13+
on `main` [here](https://github.com/Deltares/Wflow.jl)
1414
required: true
1515
- type: dropdown
1616
id: kind

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Explain how you addressed the bug/feature request, what choices you made and why
66

77
## Checklist
88
- [ ] Updated tests or added new tests
9-
- [ ] Branch is up to date with `master`
9+
- [ ] Branch is up to date with `main`
1010
- [ ] Tests & prek hooks pass
1111
- [ ] Updated documentation if needed
1212
- [ ] Updated changelog.qmd if needed

.github/workflows/CI.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ on:
33
pull_request:
44
push:
55
branches:
6-
- master
7-
- v1
6+
- main
7+
- release/v1.0
88
tags: '*'
99

1010
# needed to allow julia-actions/cache to delete old caches that it has created
@@ -29,12 +29,10 @@ jobs:
2929
- '2'
3030
steps:
3131
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
32-
- uses: julia-actions/cache@a45e8fa8be21c18a06b7177052533149e61e9b38 # v3.1.0
33-
- uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0
32+
- uses: julia-actions/cache@a7bed9df697e5d7309d68afe7542a87621a8b6c8 # v3.3.0
33+
- uses: prefix-dev/setup-pixi@f00437f565399d418b0acc85936d12c1fb668347 # v0.10.1
3434
with:
3535
pixi-version: "latest"
36-
- name: Prepare pixi
37-
run: pixi run install-julia
3836
- name: Test Wflow
3937
run: |
4038
pixi run test-wflow-cov

.github/workflows/CIWflowServer.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ on:
33
pull_request:
44
push:
55
branches:
6-
- master
7-
- v1
6+
- main
7+
- release/v1.0
88
tags: '*'
99

1010
# needed to allow julia-actions/cache to delete old caches that it has created
@@ -26,12 +26,10 @@ jobs:
2626
- x64
2727
steps:
2828
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
29-
- uses: julia-actions/cache@a45e8fa8be21c18a06b7177052533149e61e9b38 # v3.1.0
30-
- uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0
29+
- uses: julia-actions/cache@a7bed9df697e5d7309d68afe7542a87621a8b6c8 # v3.3.0
30+
- uses: prefix-dev/setup-pixi@f00437f565399d418b0acc85936d12c1fb668347 # v0.10.1
3131
with:
3232
pixi-version: "latest"
33-
- name: Prepare pixi
34-
run: pixi run install-julia
3533
- name: Test WflowServer
3634
run: |
3735
pixi run test-wflow-server

.github/workflows/TagBot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: JuliaRegistries/TagBot@14d7645453716d7a2f09b1da0504a024f97462a1 # v1.25.10
12+
- uses: JuliaRegistries/TagBot@cded32665b34ca0496d3ac10a67d08ddfc726963 # v1.25.11
1313
with:
1414
token: ${{ secrets.CI_PR_PAT }}
1515
ssh: ${{ secrets.DOCUMENTER_KEY }}

.github/workflows/docs.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Quarto documentation
22
on:
33
push:
4-
branches: [master]
4+
branches: [main, release/v1.0]
55
tags: [v*]
66
pull_request:
77

@@ -22,12 +22,12 @@ jobs:
2222
contents: write
2323
steps:
2424
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
25-
- uses: julia-actions/cache@a45e8fa8be21c18a06b7177052533149e61e9b38 # v3.1.0
26-
- uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0
25+
- uses: julia-actions/cache@a7bed9df697e5d7309d68afe7542a87621a8b6c8 # v3.3.0
26+
- uses: prefix-dev/setup-pixi@f00437f565399d418b0acc85936d12c1fb668347 # v0.10.1
2727
with:
2828
pixi-version: "latest"
29-
- name: Prepare pixi
30-
run: pixi run install-ci
29+
- name: Instantiate Julia project
30+
run: pixi run instantiate-julia docs
3131

3232
- name: Check Quarto installation and all engines
3333
run: pixi run quarto-check
@@ -46,7 +46,7 @@ jobs:
4646
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4747

4848
- name: Publish Quarto Project as dev
49-
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
49+
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
5050
uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4.1.0
5151
with:
5252
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -55,6 +55,16 @@ jobs:
5555
env:
5656
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757

58+
- name: Publish Quarto Project as v1.0
59+
if: github.event_name == 'push' && github.ref == 'refs/heads/release/v1.0'
60+
uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4.1.0
61+
with:
62+
github_token: ${{ secrets.GITHUB_TOKEN }}
63+
publish_dir: ./docs/_site
64+
destination_dir: v1.0
65+
env:
66+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
67+
5868
- name: Publish Quarto Project as version
5969
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
6070
uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4.1.0

.github/workflows/julia-auto-update.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,11 @@ jobs:
1212
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1313
with:
1414
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
15-
- uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0
15+
- uses: prefix-dev/setup-pixi@f00437f565399d418b0acc85936d12c1fb668347 # v0.10.1
1616
with:
1717
pixi-version: "latest"
1818
- name: Update Julia manifest
19-
run: |
20-
pixi run install-julia
21-
pixi run update-registry-julia
22-
pixi run update-manifest-julia
19+
run: pixi run update-manifest-julia
2320
env:
2421
JULIA_PKG_PRECOMPILE_AUTO: "0"
2522
- uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1

0 commit comments

Comments
 (0)