We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffa551e commit 885ab98Copy full SHA for 885ab98
1 file changed
.github/workflows/deploy.yml
@@ -43,17 +43,19 @@ jobs:
43
matrix:
44
include:
45
- version: latest
46
- branch: main
+ corebranch: main
47
+ pybranch: master
48
- version: develop
- branch: develop
49
+ corebranch: develop
50
+ pybranch: develop
51
steps:
52
- name: Install tools
53
run: dnf install -y doxygen plantuml
54
- name: Fetch precice
55
uses: actions/checkout@v4
56
with:
57
repository: precice/precice
- ref: ${{ matrix.branch }}
58
+ ref: ${{ matrix.corebranch }}
59
path: precice
60
fetch-depth: 0
61
- name: Build doxygen
@@ -84,7 +86,7 @@ jobs:
84
86
85
87
88
repository: precice/python-bindings
- ref: add-docs-rendering # ${{ matrix.branch }}
89
+ ref: ${{ matrix.pybranch }}
90
path: python-bindings
91
- name: Setup venv
92
run: |
0 commit comments