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 89aff40 commit 20bca10Copy full SHA for 20bca10
.github/workflows/multidocs.yml
@@ -17,10 +17,17 @@ jobs:
17
version: '1.10.5'
18
- uses: julia-actions/cache@v2
19
20
- # Build GNNGraphs docs
+
21
- name: Set up
22
run: git config --global init.defaultBranch test-multidocs
23
24
+ - name: Initialize Git in build folders
25
+ run: |
26
+ for dir in GNNGraphs/docs/build GNNLib/docs/build GNNLux/docs/build tutorials/docs/build; do
27
+ git -C $dir init
28
+ done
29
30
+ # Build GNNGraphs docs
31
- name: Install dependencies for GNNGraphs
32
run:
33
julia --project=GNNGraphs/docs/ -e '
0 commit comments