Skip to content

Commit fa8bd8a

Browse files
committed
fix: [DevOps] JavaDoc generation
1 parent 98a9366 commit fa8bd8a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/continuous-integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ jobs:
229229
mvn $MVN_ARGS
230230
231231
- name: "Coverage Report"
232-
run: python .pipeline/scripts/print-coverage.py --jacoco-report-pattern "**/target/site/jacoco/jacoco.csv"
232+
run: python .pipeline/scripts/print-coverage.py --jacoco-report-pattern "**/target/reports/jacoco/jacoco.csv"
233233

234234
static-code-analysis:
235235
needs: [ context, build ]

.github/workflows/prepare-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
- name: "Create Release"
149149
id: create-release
150150
run: |
151-
tar -caf apidocs-${{ needs.bump-version.outputs.release-version }}.tar.gz -C .targets/target/site/apidocs/ .
151+
tar -caf apidocs-${{ needs.bump-version.outputs.release-version }}.tar.gz -C .targets/target/reports/apidocs/ .
152152
tar -caf release-${{ needs.bump-version.outputs.release-version }}.tar.gz -C .release-artifacts/ .
153153
154154
RELEASE_NAME="rel/${{ needs.bump-version.outputs.release-version }}"
@@ -209,7 +209,7 @@ jobs:
209209
210210
rm -rf $TARGET_DIR
211211
mkdir -p $TARGET_DIR
212-
mv ./.targets/target/site/apidocs/* $TARGET_DIR
212+
mv ./.targets/target/reports/apidocs/* $TARGET_DIR
213213
214214
cd ./.cloud-sdk-docs
215215
git add -A .

0 commit comments

Comments
 (0)