2019-11-08 17:40:12 +01:00
|
|
|
name: 'Setup Java JDK'
|
2019-12-06 20:35:32 +01:00
|
|
|
description: 'Set up a specific version of the Java JDK and add the
|
|
|
|
command-line tools to the PATH'
|
2019-07-10 16:54:25 +02:00
|
|
|
author: 'GitHub'
|
2019-12-06 20:36:32 +01:00
|
|
|
inputs:
|
2019-08-13 22:24:39 +02:00
|
|
|
java-version:
|
2021-03-15 11:39:46 +01:00
|
|
|
description: 'The Java version to set up. Takes a whole or semver Java version. See examples of supported syntax in README file'
|
|
|
|
required: true
|
|
|
|
distribution:
|
|
|
|
description: 'Java distribution. See the list of supported distributions in README file'
|
2019-07-11 05:11:48 +02:00
|
|
|
required: true
|
2019-11-22 21:32:49 +01:00
|
|
|
java-package:
|
2021-03-15 11:39:46 +01:00
|
|
|
description: 'The package type (jdk, jre, jdk+fx, jre+fx)'
|
2019-11-22 19:45:27 +01:00
|
|
|
required: false
|
2019-11-03 05:39:35 +01:00
|
|
|
default: 'jdk'
|
2019-11-22 21:32:49 +01:00
|
|
|
architecture:
|
2021-03-15 11:39:46 +01:00
|
|
|
description: 'The architecture of the package'
|
2019-11-22 19:45:27 +01:00
|
|
|
required: false
|
2019-07-15 17:11:53 +02:00
|
|
|
default: 'x64'
|
2019-07-11 05:11:48 +02:00
|
|
|
jdkFile:
|
2021-03-15 11:39:46 +01:00
|
|
|
description: 'Path to where the compressed JDK is located'
|
2019-07-15 17:26:32 +02:00
|
|
|
required: false
|
2019-11-28 23:18:30 +01:00
|
|
|
server-id:
|
2019-12-06 20:35:32 +01:00
|
|
|
description: 'ID of the distributionManagement repository in the pom.xml
|
2019-12-20 17:35:06 +01:00
|
|
|
file. Default is `github`'
|
2019-11-28 23:18:30 +01:00
|
|
|
required: false
|
2020-07-16 03:53:39 +02:00
|
|
|
default: 'github'
|
2019-12-19 17:52:26 +01:00
|
|
|
server-username:
|
2019-12-19 20:28:11 +01:00
|
|
|
description: 'Environment variable name for the username for authentication
|
2019-12-20 17:35:06 +01:00
|
|
|
to the Apache Maven repository. Default is $GITHUB_ACTOR'
|
2019-11-28 23:18:30 +01:00
|
|
|
required: false
|
2020-07-16 03:53:39 +02:00
|
|
|
default: 'GITHUB_ACTOR'
|
2019-12-19 17:52:26 +01:00
|
|
|
server-password:
|
2019-12-19 20:28:11 +01:00
|
|
|
description: 'Environment variable name for password or token for
|
2019-12-20 17:35:06 +01:00
|
|
|
authentication to the Apache Maven repository. Default is $GITHUB_TOKEN'
|
2019-11-28 23:18:30 +01:00
|
|
|
required: false
|
2020-07-16 03:53:39 +02:00
|
|
|
default: 'GITHUB_TOKEN'
|
2019-12-10 22:02:21 +01:00
|
|
|
settings-path:
|
2019-12-18 20:05:01 +01:00
|
|
|
description: 'Path to where the settings.xml file will be written. Default is ~/.m2.'
|
2019-12-10 22:02:21 +01:00
|
|
|
required: false
|
2021-03-17 09:04:00 +01:00
|
|
|
overwrite-settings:
|
|
|
|
description: 'Overwrite the settings.xml file if it exists. Default is "true".'
|
|
|
|
required: false
|
|
|
|
default: true
|
2020-05-02 13:33:15 +02:00
|
|
|
gpg-private-key:
|
|
|
|
description: 'GPG private key to import. Default is empty string.'
|
|
|
|
required: false
|
|
|
|
gpg-passphrase:
|
|
|
|
description: 'Environment variable name for the GPG private key passphrase. Default is
|
|
|
|
$GPG_PASSPHRASE.'
|
|
|
|
required: false
|
2020-05-24 20:03:57 +02:00
|
|
|
outputs:
|
2021-03-15 11:39:46 +01:00
|
|
|
distribution:
|
|
|
|
description: 'Distribution of Java that has been installed'
|
2020-05-24 20:03:57 +02:00
|
|
|
version:
|
|
|
|
description: 'Actual version of the java environment that has been installed'
|
2021-03-15 11:39:46 +01:00
|
|
|
path:
|
|
|
|
description: 'Path to where the java environment has been installed (same as $JAVA_HOME)'
|
2019-07-10 16:54:25 +02:00
|
|
|
runs:
|
|
|
|
using: 'node12'
|
2020-05-02 13:33:15 +02:00
|
|
|
main: 'dist/setup/index.js'
|
|
|
|
post: 'dist/cleanup/index.js'
|