Skip to content

Commit 342243b

Browse files
committed
Fix path issue for javadoc generation
1 parent 5b1cbf5 commit 342243b

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/doc_generation-6.0.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ jobs:
3232
# Setup gradle and build Java
3333
- name: Setup Gradle
3434
uses: gradle/actions/setup-gradle@v3
35-
36-
- name: Build with Gradle
37-
run: ./gradlew build
35+
- name: Build with Gradle (and make paths)
36+
run: |
37+
mkdir -p doc/javadoc
38+
./gradlew build
3839
3940
# generate the javadoc files
4041
- name: Set up JDK 17

0 commit comments

Comments
 (0)