Skip to content

Commit 34eebed

Browse files
committed
chore: Update Maven command in Hugo workflow
1 parent 01cb3e3 commit 34eebed

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/hugo.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ jobs:
6060
submodules: recursive
6161
fetch-depth: 0
6262
- name: Build client_java
63-
run: ./mvnw -B clean install -DskipTests
63+
run: mvn -B clean install -DskipTests
6464
- name: Make Javadoc
65-
run: ./mvnw -B clean compile javadoc:javadoc javadoc:aggregate
65+
run: mvn -B clean compile javadoc:javadoc javadoc:aggregate
6666
- name: Move the Javadoc to docs/static/api/
6767
run: mv ./target/site/apidocs ./docs/static/api && echo && echo 'ls ./docs/static/api' && ls ./docs/static/api
6868
- name: Setup Pages

.gitignore

+8-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,11 @@
2222

2323
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2424
hs_err_pid*
25-
replay_pid*
25+
replay_pid*
26+
27+
# Executables
28+
*.exe
29+
*.com
30+
*.dll
31+
*.bat
32+
*.msi

0 commit comments

Comments
 (0)