From c0843b2abff5d3d5e49b99b65e45ad2321ae1659 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9E=84=EC=A4=80=EC=98=81?= Date: Sat, 28 Jan 2023 23:27:34 +0900 Subject: [PATCH] Fix concurrency issues in release Detail ====== - Tag was calculated in `Compute tag name` step and `Create release` step use that tag, so the second action may fail if new commit created before previous commit's action is not finished. - ref: https://github.com/progit/progit2-ko/actions/runs/3924407747/jobs/6708646550 --- .github/workflows/release-on-merge.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-on-merge.yml b/.github/workflows/release-on-merge.yml index 3c877b8..4c6a230 100644 --- a/.github/workflows/release-on-merge.yml +++ b/.github/workflows/release-on-merge.yml @@ -4,6 +4,8 @@ on: push: branches: [ main, master ] +concurrency: release + jobs: release: runs-on: ubuntu-latest