Skip to content

Commit 57aee5d

Browse files
committed
Add workflow
1 parent 28eeb9f commit 57aee5d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/javadoc.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ env:
1818

1919
jobs:
2020
build:
21+
name: "JavaDoc to Documentation Portal"
2122
runs-on: ubuntu-latest
2223

2324
steps:
@@ -45,7 +46,7 @@ jobs:
4546
run: echo "MAJOR_VERSION=$(jq -r '.version' latest.json | cut -d '.' -f 1)" >> $GITHUB_OUTPUT
4647

4748
- name: "Install project (skip tests)"
48-
run: mvn install -DskipTests
49+
run: mvn install -DskipTests --quiet
4950

5051
- name: "Process sources"
5152
run: mvn process-sources -Drelease --fail-at-end --projects "${PROJECTS}"
@@ -70,7 +71,7 @@ jobs:
7071
7172
rm -rf $TARGET_DIR
7273
mkdir -p $TARGET_DIR
73-
mv ./.targets/target/reports/apidocs/* $TARGET_DIR
74+
mv ./target/reports/apidocs/* $TARGET_DIR
7475
7576
cd ./.cloud-sdk-docs
7677
git add -A .

0 commit comments

Comments
 (0)