mirror of
https://gitea.com/actions/setup-node.git
synced 2024-11-10 17:49:24 +08:00
Dont always auth
This commit is contained in:
parent
985b557393
commit
c09ef151f8
@ -41,7 +41,7 @@ function writeRegistryToFile(registryUrl, fileLocation) {
|
||||
const registryString = scope
|
||||
? `${scope}:registry=${registryUrl}`
|
||||
: `registry=${registryUrl}`;
|
||||
newContents += `${registryString}${os.EOL}always-auth=true${os.EOL}${authString}`;
|
||||
newContents += `${registryString}${os.EOL}${authString}`;
|
||||
fs.writeFileSync(fileLocation, newContents);
|
||||
core.exportVariable('NPM_CONFIG_USERCONFIG', fileLocation);
|
||||
}
|
||||
|
@ -39,7 +39,7 @@ function writeRegistryToFile(registryUrl: string, fileLocation: string) {
|
||||
const registryString = scope
|
||||
? `${scope}:registry=${registryUrl}`
|
||||
: `registry=${registryUrl}`;
|
||||
newContents += `${registryString}${os.EOL}always-auth=true${os.EOL}${authString}`;
|
||||
newContents += `${registryString}${os.EOL}${authString}`;
|
||||
fs.writeFileSync(fileLocation, newContents);
|
||||
core.exportVariable('NPM_CONFIG_USERCONFIG', fileLocation);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user