Skip to content

Commit 8f1cd4f

Browse files
Explicitly include all push branches
1 parent 8bb2b17 commit 8f1cd4f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/documentation.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@ name: Build Documentation
22

33
on:
44
push:
5+
branches:
6+
- "**"
57
tags-ignore:
68
- "v*"
79
pull_request:
810
release:
911
types:
1012
- published
1113

12-
concurrency:
13-
group: "docs"
14-
cancel-in-progress: false
15-
1614
jobs:
1715
build:
1816
name: Build
@@ -80,6 +78,10 @@ jobs:
8078
runs-on: ubuntu-latest
8179
needs:
8280
- build
81+
# Make sure we avoid a race condition =)
82+
concurrency:
83+
group: "docs-stage"
84+
cancel-in-progress: false
8385
permissions:
8486
contents: write
8587

0 commit comments

Comments
 (0)