We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 10a7aa5 + edaae40 commit 1c1d90eCopy full SHA for 1c1d90e
1 file changed
.github/workflows/maven.yml
@@ -8,6 +8,7 @@ on:
8
branches: [ "main", "develop" ]
9
pull_request:
10
branches:
11
+ workflow_dispatch:
12
13
jobs:
14
build:
@@ -50,3 +51,9 @@ jobs:
50
51
- name: Publish Javadoc to Github Pages
52
id: deployment
53
uses: actions/deploy-pages@v1
54
+
55
+ # Kill in progress deployments because only the newest version is relevant
56
+ # and concurrent deployments cause CI failures.
57
+ concurrency:
58
+ group: ${{ github.workflow }}-${{ github.ref }}
59
+ cancel-in-progress: true
0 commit comments