aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander <4584443+DragonStuff@users.noreply.github.com>2021-08-28 11:10:15 +0900
committerAlexander <4584443+DragonStuff@users.noreply.github.com>2021-08-28 11:10:15 +0900
commitb68e76bbace24528d0c4d8c75ac9b706a94b0369 (patch)
treefb03c901341d04f7940489571d153d458ed3d776
parent7107ded3cd7d1ef7ba56e9a8077843d0542b2098 (diff)
downloadseaweedfs-b68e76bbace24528d0c4d8c75ac9b706a94b0369.tar.xz
seaweedfs-b68e76bbace24528d0c4d8c75ac9b706a94b0369.zip
fix(ci): only cancel previous in-progress workflow of the same group
-rw-r--r--.github/workflows/binary_test.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/binary_test.yml b/.github/workflows/binary_test.yml
index 467332359..87e3347a0 100644
--- a/.github/workflows/binary_test.yml
+++ b/.github/workflows/binary_test.yml
@@ -5,10 +5,6 @@ on:
pull_request:
workflow_dispatch: []
-concurrency:
- group: ${{ github.head_ref }}/binary_test
- cancel-in-progress: true
-
jobs:
build:
@@ -36,6 +32,10 @@ jobs:
- goarch: s390x
goos: windows
+ concurrency:
+ group: ${{ github.head_ref }}/binary_test/${{ matrix.goos }}/${{ matrix.goarch }}
+ cancel-in-progress: true
+
steps:
- name: Check out code into the Go module directory