mirror of
https://github.com/actions/setup-node.git
synced 2024-11-13 07:01:07 +07:00
Spike to default the scope from package.json
This commit is contained in:
parent
eff380dfbc
commit
574c6daa52
@ -25,6 +25,9 @@ function writeRegistryToFile(
|
||||
if (!scope && registryUrl.indexOf('npm.pkg.github.com') > -1) {
|
||||
scope = github.context.repo.owner;
|
||||
}
|
||||
if (!scope && namePrefix = require('./package').name.match('@[^/]+')) {
|
||||
scope = namePrefix[0];
|
||||
}
|
||||
if (scope && scope[0] != '@') {
|
||||
scope = '@' + scope;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user