mirror of
https://gitea.com/actions/setup-java.git
synced 2025-04-06 23:39:37 +00:00
Update README with env sections
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user