FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
setup-java/src/setup-java.ts at main · ModProg/setup-java · GitHub
ModProg
/
setup-java
Public
forked from
actions/setup-java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
setup-java
/
src
/
setup-java.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
58 lines (50 loc) · 1.9 KB
Breadcrumbs
setup-java
/
src
/
setup-java.ts
Copy path
File metadata and controls
58 lines (50 loc) · 1.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import
*
as
core
from
'@actions/core'
;
import
*
as
installer
from
'./installer'
;
import
*
as
auth
from
'./auth'
;
import
*
as
gpg
from
'./gpg'
;
import
*
as
constants
from
'./constants'
;
import
*
as
path
from
'path'
;
async
function
run
(
)
{
try
{
let
version
=
core
.
getInput
(
constants
.
INPUT_VERSION
)
;
if
(
!
version
)
{
version
=
core
.
getInput
(
constants
.
INPUT_JAVA_VERSION
,
{
required
:
true
}
)
;
}
const
arch
=
core
.
getInput
(
constants
.
INPUT_ARCHITECTURE
,
{
required
:
true
}
)
;
const
javaPackage
=
core
.
getInput
(
constants
.
INPUT_JAVA_PACKAGE
,
{
required
:
true
}
)
;
const
jdkFile
=
core
.
getInput
(
constants
.
INPUT_JDK_FILE
,
{
required
:
false
}
)
;
await
installer
.
getJava
(
version
,
arch
,
jdkFile
,
javaPackage
)
;
const
matchersPath
=
path
.
join
(
__dirname
,
'..'
,
'..'
,
'.github'
)
;
core
.
info
(
`##[add-matcher]
${
path
.
join
(
matchersPath
,
'java.json'
)
}
`
)
;
const
id
=
core
.
getInput
(
constants
.
INPUT_SERVER_ID
,
{
required
:
false
}
)
;
const
username
=
core
.
getInput
(
constants
.
INPUT_SERVER_USERNAME
,
{
required
:
false
}
)
;
const
password
=
core
.
getInput
(
constants
.
INPUT_SERVER_PASSWORD
,
{
required
:
false
}
)
;
const
gpgPrivateKey
=
core
.
getInput
(
constants
.
INPUT_GPG_PRIVATE_KEY
,
{
required
:
false
}
)
||
constants
.
INPUT_DEFAULT_GPG_PRIVATE_KEY
;
const
gpgPassphrase
=
core
.
getInput
(
constants
.
INPUT_GPG_PASSPHRASE
,
{
required
:
false
}
)
||
(
gpgPrivateKey
?
constants
.
INPUT_DEFAULT_GPG_PASSPHRASE
:
undefined
)
;
if
(
gpgPrivateKey
)
{
core
.
setSecret
(
gpgPrivateKey
)
;
}
await
auth
.
configAuthentication
(
id
,
username
,
password
,
gpgPassphrase
)
;
if
(
gpgPrivateKey
)
{
core
.
info
(
'importing private key'
)
;
const
keyFingerprint
=
(
await
gpg
.
importKey
(
gpgPrivateKey
)
)
||
''
;
core
.
saveState
(
constants
.
STATE_GPG_PRIVATE_KEY_FINGERPRINT
,
keyFingerprint
)
;
}
}
catch
(
error
)
{
core
.
setFailed
(
error
.
message
)
;
}
}
run
(
)
;
Back
|
FazBrowse Home
|
New Git URL