3
0
Fork 0
mirror of https://gitea.com/actions/setup-node.git synced 2024-11-24 11:09:33 +01:00
This commit is contained in:
Danny McCormick 2019-08-05 11:47:09 -04:00
parent 0930c1111e
commit dd1cda5071
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -17,7 +17,7 @@ async function run() {
const registryUrl = core.getInput('registry-url');
if (registryUrl) {
auth.configAuth(registryUrl);
await auth.configAuth(registryUrl);
}
// TODO: setup proxy from runner proxy config