Fix tests for always-auth

This commit is contained in:
David J. Felix 2019-08-29 19:36:24 -04:00
parent 9c950f557c
commit 17f3fe1837
6 changed files with 36 additions and 32 deletions

View file

@ -37,7 +37,7 @@ function run() {
const registryUrl = core.getInput('registry-url');
const alwaysAuth = core.getInput('always-auth');
if (registryUrl) {
auth.configAuthentication({ registryUrl, alwaysAuth });
auth.configAuthentication(registryUrl, alwaysAuth);
}
// TODO: setup proxy from runner proxy config
const matchersPath = path.join(__dirname, '..', '.github');