Skip to content

Commit 239887d

Browse files
Update github action settings
Try to fix ci/cd run cancelling issue.
1 parent c781699 commit 239887d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
spm:
2424
name: Swift Package Manager 5.4
2525
runs-on: macOS-11
26-
concurrency: spm
26+
concurrency:
27+
group: spm-${{ github.run_id }}
28+
cancel-in-progress: false
2729
env:
2830
DEVELOPER_DIR: /Applications/Xcode_12.5.1.app/Contents/Developer
2931
steps:
@@ -45,7 +47,9 @@ jobs:
4547
carthage:
4648
name: Carthage
4749
runs-on: macOS-11
48-
concurrency: carthage
50+
concurrency:
51+
group: carthage-${{ github.run_id }}
52+
cancel-in-progress: false
4953
env:
5054
DEVELOPER_DIR: /Applications/Xcode_12.5.1.app/Contents/Developer
5155
strategy:

0 commit comments

Comments
 (0)