From 13fd31a6047219ff05074f2912224f7e3d4cd086 Mon Sep 17 00:00:00 2001 From: Sylwester Lachiewicz Date: Sat, 2 Dec 2023 10:23:34 +0100 Subject: [PATCH] Reuse plexus-pom action for CI --- .github/workflows/maven.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 39936226..09feae47 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -20,13 +20,12 @@ name: GitHub CI on: [push, pull_request] jobs: - build: name: Build it uses: codehaus-plexus/.github/.github/workflows/maven.yml@master - with: - jdk-fast-fail-build: '20' - jdk-matrix: '["8", "11", "17", "20"]' - jdk-distribution-matrix: '["temurin"]' - os-matrix: '["ubuntu-latest","windows-latest", "macOS-latest"]' - maven_args: 'verify javadoc:javadoc -e -B -V -fae ' + + deploy: + name: Deploy + needs: build + uses: codehaus-plexus/.github/.github/workflows/maven-deploy.yml@master + secrets: inherit