We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28eeb9f commit 57aee5dCopy full SHA for 57aee5d
.github/workflows/javadoc.yaml
@@ -18,6 +18,7 @@ env:
18
19
jobs:
20
build:
21
+ name: "JavaDoc to Documentation Portal"
22
runs-on: ubuntu-latest
23
24
steps:
@@ -45,7 +46,7 @@ jobs:
45
46
run: echo "MAJOR_VERSION=$(jq -r '.version' latest.json | cut -d '.' -f 1)" >> $GITHUB_OUTPUT
47
48
- name: "Install project (skip tests)"
- run: mvn install -DskipTests
49
+ run: mvn install -DskipTests --quiet
50
51
- name: "Process sources"
52
run: mvn process-sources -Drelease --fail-at-end --projects "${PROJECTS}"
@@ -70,7 +71,7 @@ jobs:
70
71
72
rm -rf $TARGET_DIR
73
mkdir -p $TARGET_DIR
- mv ./.targets/target/reports/apidocs/* $TARGET_DIR
74
+ mv ./target/reports/apidocs/* $TARGET_DIR
75
76
cd ./.cloud-sdk-docs
77
git add -A .
0 commit comments