From 60e90076ebfe985ec3cd342aa69eec8c2367ad36 Mon Sep 17 00:00:00 2001
From: "Mahatthana (Kelvin) Nomsawadi" <me@bboykelvin.dev>
Date: Fri, 7 Jun 2024 17:36:23 +0700
Subject: [PATCH] disable concurrency so I could test multiple runs in parallel

---
 .github/workflows/release-embedding-sdk.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/release-embedding-sdk.yml b/.github/workflows/release-embedding-sdk.yml
index 5dc3b8b338b..88d04fa376c 100644
--- a/.github/workflows/release-embedding-sdk.yml
+++ b/.github/workflows/release-embedding-sdk.yml
@@ -13,11 +13,11 @@ on:
         type: string
         required: true
 
-concurrency:
-  # We want to ensure only one job is running at a time because
-  # there could be a conflict when updating the readme file.
-  group: ${{ github.workflow }}
-  cancel-in-progress: true
+# concurrency:
+#   # We want to ensure only one job is running at a time because
+#   # there could be a conflict when updating the readme file.
+#   group: ${{ github.workflow }}
+#   cancel-in-progress: true
 
 jobs:
   check-git-tag:
-- 
GitLab