Update README with env sections

This commit is contained in:
Bryan Clark
2019-12-19 15:39:48 -08:00
parent 7e36086f36
commit c05b45bb91
2 changed files with 13 additions and 11 deletions

View File

@ -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) {