From c47bf85e05ce4452b6dc1e9260ffe3d775a8d9e9 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 24 Oct 2024 20:44:55 -0700 Subject: [PATCH] ci: concurrency control for releases --- .github/workflows/release-tip.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release-tip.yml b/.github/workflows/release-tip.yml index d0d9264a2..f228852a1 100644 --- a/.github/workflows/release-tip.yml +++ b/.github/workflows/release-tip.yml @@ -8,6 +8,12 @@ on: name: Release Tip +# We must only run one release workflow at a time to prevent corrupting +# our release artifacts. +concurrency: + group: ${{ github.workflow }} + cancel-in-progress: false + jobs: tag: runs-on: namespace-profile-ghostty-sm