Skip to content

Commit abadfe9

Browse files
committed
Add concurrency control to gh-pages deployment
Prevents race conditions when multiple CI runs try to deploy simultaneously by queuing deployments instead of running in parallel.
1 parent 18a141e commit abadfe9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/deploy-playground.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
permissions:
1010
contents: write
1111

12+
concurrency:
13+
group: deploy-gh-pages
14+
cancel-in-progress: false
15+
1216
jobs:
1317
deploy:
1418
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)