mirror of
https://github.com/actions/setup-java.git
synced 2025-04-19 09:26:46 +00:00
Update README with env sections
This commit is contained in:
parent
7e36086f36
commit
c05b45bb91
2 changed files with 13 additions and 11 deletions
|
@ -19,8 +19,10 @@ async function run() {
|
|||
console.log(`##[add-matcher]${path.join(matchersPath, 'java.json')}`);
|
||||
|
||||
const id = core.getInput('server-id', {required: false}) || undefined;
|
||||
const username = core.getInput('server-username', {required: false}) || undefined;
|
||||
const password = core.getInput('server-password', {required: false}) || undefined;
|
||||
const username =
|
||||
core.getInput('server-username', {required: false}) || undefined;
|
||||
const password =
|
||||
core.getInput('server-password', {required: false}) || undefined;
|
||||
|
||||
await auth.configAuthentication(id, username, password);
|
||||
} catch (error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue