Skip to content

Commit f490c2f

Browse files
authored
fix: workflow concurrency (#199)
1 parent c4f97e8 commit f490c2f

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/npm-publish.yml

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
release:
55
types: [created]
66

7+
concurrency:
8+
group: release
9+
cancel-in-progress: false
10+
711
jobs:
812
build:
913
name: npm-release

.github/workflows/publish-dev.yml

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
push:
66
branches: [main]
77

8+
concurrency:
9+
group: release
10+
cancel-in-progress: false
11+
812
jobs:
913
build:
1014
name: npm-publish-dev

.github/workflows/publish-docs.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ on:
55
release:
66
types: [created]
77

8+
concurrency:
9+
group: docs
10+
cancel-in-progress: false
11+
812
jobs:
913
build:
1014
name: publish-docs
1115
runs-on: ubuntu-latest
1216

1317
steps:
14-
- name: Checkout Repository
15-
uses: actions/checkout@v2
16-
1718
- name: Trigger Workflow
1819
uses: convictional/[email protected]
1920
with:

0 commit comments

Comments
 (0)