From fa7d3d9067bd810b8f8302a29e1082de4975cff9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Gonz=C3=A1lez?= Date: Sat, 26 Apr 2025 13:47:25 +0200 Subject: [PATCH] Tentative fix for deploy job flakiness The failure described in #967 is suspected to stem from race conditions with the GH API, as described in https://github.com/softprops/action-gh-release/issues/445#issuecomment-2407940052. --- .github/workflows/deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 19ed9295..1534f6e3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,6 +20,10 @@ jobs: if: ${{ !github.event.repository.fork }} strategy: + # Execute one job at a time to avoid potential race conditions in the + # GitHub release management APIs. See: + # https://github.com/softprops/action-gh-release/issues/445#issuecomment-2407940052 + max-parallel: 1 matrix: target: - x86_64-unknown-linux-gnu