From 5a9fc4626e6c29740a80f663d407827d14f68a67 Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Thu, 30 Jan 2025 13:31:05 -0800 Subject: [PATCH] fix: limit deployment jobs to one to avoid race conditions (#130) --- .github/workflows/deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0b027b4..a938df7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,6 +36,7 @@ jobs: runs-on: ubuntu-latest strategy: fail-fast: false + max-parallel: 1 matrix: deployment: ${{ fromJson(inputs.deployments) }} steps: