From df854fd465fcf49284164c9934ec5618581e47e1 Mon Sep 17 00:00:00 2001 From: Andres Almiray Date: Mon, 29 Mar 2021 11:01:49 +0200 Subject: [PATCH] Java 11 is required to run this action --- README.adoc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.adoc b/README.adoc index 330bdd6..26a0711 100644 --- a/README.adoc +++ b/README.adoc @@ -54,6 +54,11 @@ jobs: git config user.email "${{ github.event.head_commit.committer.email }}" mvn -B --file pom.xml release:prepare release:perform + - name: Setup Java + uses: actions/setup-java@v1.4.3 + with: + java-version: 11 + # Create a release - name: Run JReleaser @@ -65,6 +70,8 @@ jobs: The last step executes a `full-release` with the default `jreleaser.yml` configuration that's expected to be located at the root of the repository. +WARNING: This action requires Java 11+ to download and execute JReleaser. + == Customizing == Inputs