From ba242d27d3cb49909ce7e5263dd771fa7247bbde Mon Sep 17 00:00:00 2001 From: "Piotr P. Karwasz" Date: Tue, 25 Aug 2026 12:06:00 +0200 Subject: [PATCH] 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 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 005d3e9a0e..d34d4a24b6 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