forked from actions/setup-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconstants.ts
More file actions
42 lines (39 loc) · 1.19 KB
/
Copy pathconstants.ts
File metadata and controls
42 lines (39 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
export const INPUT_VERSION = 'version';
export const INPUT_JAVA_VERSION = 'java-version';
export const INPUT_ARCHITECTURE = 'architecture';
export const INPUT_JAVA_PACKAGE = 'java-package';
export const INPUT_JDK_FILE = 'jdkFile';
export const INPUT_DISTRO = 'distro';
export const INPUT_SERVER_ID = 'server-id';
export const INPUT_SERVER_USERNAME = 'server-username';
export const INPUT_SERVER_PASSWORD = 'server-password';
export const INPUT_SETTINGS_PATH = 'settings-path';
export const INPUT_GPG_PRIVATE_KEY = 'gpg-private-key';
export const INPUT_GPG_PASSPHRASE = 'gpg-passphrase';
export const INPUT_DEFAULT_GPG_PRIVATE_KEY = undefined;
export const INPUT_DEFAULT_GPG_PASSPHRASE = 'GPG_PASSPHRASE';
export const STATE_GPG_PRIVATE_KEY_FINGERPRINT = 'gpg-private-key-fingerprint';
export const DISCO_URL = 'https://stage.api.foojay.io';
export const PACKAGES_PATH = '/disco/v3.0/packages';
export const DISTROS: string[] = [
'aoj',
'aoj_openj9',
'bisheng',
'corretto',
'dragonwell',
'jetbrains',
'kona',
'liberica',
'microsoft',
'ojdk_build',
'openlogic',
'oracle_openjdk',
'oracle',
'sap_machine',
'semeru',
'semeru_certified',
'temurin',
'trava',
'zulu',
'zulu_prime'
];