This is an automated email from the ASF dual-hosted git repository. ppkarwasz pushed a commit to branch run-install-before-site in repository https://gitbox.apache.org/repos/asf/logging-flume.git
commit ba242d27d3cb49909ce7e5263dd771fa7247bbde Author: Piotr P. Karwasz <[email protected]> AuthorDate: Tue Aug 25 12:06:00 2026 +0200 Run `install` before generating the site The `site` lifecycle packages no jars, so the reactor's SNAPSHOT dependencies only resolved when the shared Maven cache happened to contain them from a previous snapshot deploy job. Assisted-By: Claude Fable 5 <[email protected]> Claude-Session: https://claude.ai/code/session_016zsFn1f2B32vcNoCeZSfn7 --- .github/workflows/deploy-site.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deploy-site.yaml b/.github/workflows/deploy-site.yaml index 005d3e9a..d34d4a24 100644 --- a/.github/workflows/deploy-site.yaml +++ b/.github/workflows/deploy-site.yaml @@ -45,6 +45,7 @@ jobs: profile: ~ whoami: ${{ github.ref_name }}-site-stg-out subdir: content/flume/2.x + install-required: true target-branch: ${{ github.ref_name }}-site-stg-out deploy-site-pro: @@ -59,6 +60,7 @@ jobs: profile: ~ whoami: ${{ github.ref_name }}-out subdir: content/flume/2.x + install-required: true target-branch: ${{ github.ref_name }}-out export-version: @@ -85,4 +87,5 @@ jobs: profile: ~ whoami: ${{ github.ref_name }}-site-stg-out subdir: content/flume/${{ needs.export-version.outputs.version }} + install-required: true target-branch: ${{ github.ref_name }}-site-stg-out
