Skip to content

Commit

Permalink
chore: Update Maven command in Hugo workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-logan committed Jul 15, 2024
1 parent 01cb3e3 commit 34eebed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/hugo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ jobs:
submodules: recursive
fetch-depth: 0
- name: Build client_java
run: ./mvnw -B clean install -DskipTests
run: mvn -B clean install -DskipTests
- name: Make Javadoc
run: ./mvnw -B clean compile javadoc:javadoc javadoc:aggregate
run: mvn -B clean compile javadoc:javadoc javadoc:aggregate
- name: Move the Javadoc to docs/static/api/
run: mv ./target/site/apidocs ./docs/static/api && echo && echo 'ls ./docs/static/api' && ls ./docs/static/api
- name: Setup Pages
Expand Down
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,11 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
replay_pid*

# Executables
*.exe
*.com
*.dll
*.bat
*.msi

0 comments on commit 34eebed

Please sign in to comment.