From b052cddfbf32ba5196ca6d60b7087e9c6fc25d3b Mon Sep 17 00:00:00 2001 From: Cory Hall <43035978+corymhall@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:44:48 -0500 Subject: [PATCH] chore: add concurrency group to release job (#315) This adds a concurrency group to the release workflow so only 1 release will occur at a time fixes #284 --- .github/workflows/main.yml | 3 +++ .github/workflows/release.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5aa3f491..312ebe2c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,6 +52,9 @@ jobs: needs: - build - lint + concurrency: + group: release + cancel-in-progress: false steps: - name: Checkout Repo uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f9372e05..2d06ceda 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,6 +41,9 @@ jobs: release: name: Release + concurrency: + group: release + cancel-in-progress: false runs-on: ubuntu-latest needs: - build