From 2ae9ec87bbde619c0f6f2bf9965f569c803f2d16 Mon Sep 17 00:00:00 2001 From: Laurent Trinques Date: Wed, 13 May 2026 01:40:55 +0200 Subject: [PATCH] Update windows-build.yml --- .github/workflows/windows-build.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows-build.yml b/.github/workflows/windows-build.yml index 307f210f4..e5c77e4db 100644 --- a/.github/workflows/windows-build.yml +++ b/.github/workflows/windows-build.yml @@ -370,6 +370,14 @@ jobs: id-token: write steps: + - name: Checkout master (for build-aux scripts) + uses: actions/checkout@v4 + with: + ref: master + path: source + sparse-checkout: build-aux/generate-page.py + sparse-checkout-cone-mode: false + - name: Download installer artifact uses: actions/download-artifact@v4 with: @@ -428,7 +436,9 @@ jobs: export DATE SHORT REPO SHA="${{ github.sha }}" RUN_URL export RUN_NUMBER="${{ github.run_number }}" export INSTALLER_URL PORTABLE_URL MSI_URL - python3 build-aux/generate-page.py + # Write the page generator script to /tmp (build-aux/ not available + # in deploy-pages job which only checks out gh-pages branch) + python3 source/build-aux/generate-page.py - name: Add .nojekyll to disable Jekyll processing run: touch gh-pages/.nojekyll