From 9a4bdf15a34e964b3efb74f10bf1ddf61c95df76 Mon Sep 17 00:00:00 2001 From: Bryan Joshua Pedini Date: Sun, 1 Feb 2026 18:16:51 +0100 Subject: [PATCH] fix: update deployment workflow concurrency settings Configure concurrency group for website deployment workflow to prevent race conditions and ensure orderly deployment execution. The cancel-in-progress setting is set to false to maintain deployment stability. --- .gitea/workflows/deploy.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index abb5add..6f16986 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -1,6 +1,8 @@ --- name: Deploy website on production server when committing on main -concurrency: 1 +concurrency: + group: deploy-website + cancel-in-progress: false on: push: