Skip to content

Commit 0b860a5

Browse files
committed
fix(actions): add concurrency group for deploy
1 parent cc23ae3 commit 0b860a5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
branches:
66
- main
77

8+
concurrency:
9+
group: "pages"
10+
cancel-in-progress: true
11+
812
jobs:
913
build:
1014
name: Build
@@ -16,7 +20,7 @@ jobs:
1620
- uses: actions/setup-node@v4
1721
with:
1822
node-version: 20
19-
cache: npm
23+
cache: "npm"
2024
- name: Install dependencies
2125
run: npm ci
2226
- name: Build website

0 commit comments

Comments
 (0)