Skip to content

Commit

Permalink
Add building the docs
Browse files Browse the repository at this point in the history
Needed Java/gradle and to actually create the things
  • Loading branch information
EAGrahamJr authored Dec 18, 2023
1 parent dc6a3d6 commit 3f5e22c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
# get java
- name: Java
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: "temurin"
# build docs
- name: Build docs
run: |
cd docs
./gradlew --no-daemon --quiet clean dokkaJavadoc
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Build with Jekyll
Expand Down

0 comments on commit 3f5e22c

Please sign in to comment.