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 e980e66 commit 88f5a94Copy full SHA for 88f5a94
.github/workflows/maven.yml
@@ -16,18 +16,16 @@
16
# under the License.
17
18
name: GitHub CI
19
-on:
20
- push:
21
- pull_request:
22
23
-jobs:
+on: [push, pull_request]
24
+jobs:
25
build:
26
name: Build it
27
uses: codehaus-plexus/.github/.github/workflows/maven.yml@master
28
- with:
29
- jdk-fast-fail-build: '11'
30
- jdk-matrix: '["11", "17"]'
31
- jdk-distribution-matrix: '["zulu", "temurin", "microsoft", "liberica"]'
32
- os-matrix: '["ubuntu-latest","windows-latest", "macOS-latest"]'
33
- maven_args: 'install javadoc:javadoc -e -B -V -fae '
+
+ deploy:
+ name: Deploy
+ needs: build
+ uses: codehaus-plexus/.github/.github/workflows/maven-deploy.yml@master
+ secrets: inherit
0 commit comments