We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bb2b17 commit 8f1cd4fCopy full SHA for 8f1cd4f
.github/workflows/documentation.yml
@@ -2,17 +2,15 @@ name: Build Documentation
2
3
on:
4
push:
5
+ branches:
6
+ - "**"
7
tags-ignore:
8
- "v*"
9
pull_request:
10
release:
11
types:
12
- published
13
-concurrency:
- group: "docs"
14
- cancel-in-progress: false
15
-
16
jobs:
17
build:
18
name: Build
@@ -80,6 +78,10 @@ jobs:
80
78
runs-on: ubuntu-latest
81
79
needs:
82
- build
+ # Make sure we avoid a race condition =)
+ concurrency:
83
+ group: "docs-stage"
84
+ cancel-in-progress: false
85
permissions:
86
contents: write
87
0 commit comments