From 693ac1a1e58325f517614c5c217d1da3a0ee6c38 Mon Sep 17 00:00:00 2001 From: Lutz Reinhardt Date: Mon, 16 Feb 2026 16:39:50 +0100 Subject: [PATCH] Sync deployment jobs Deployment jobs modify the `gh-pages` branch and concurrent modification needs to be prevented. Otherwise we get random build failures. --- .github/actions/deploy-versioned-pages/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/deploy-versioned-pages/action.yml b/.github/actions/deploy-versioned-pages/action.yml index c741e26..d30252e 100644 --- a/.github/actions/deploy-versioned-pages/action.yml +++ b/.github/actions/deploy-versioned-pages/action.yml @@ -41,6 +41,10 @@ outputs: runs: using: "composite" steps: + - name: Sync concurrent deployments + uses: softprops/turnstyle@v3 + with: + continue-after-seconds: 120 - name: Determine target_folder id: calc shell: bash