fix registry_auth_json being read from ENV instead of input
This commit is contained in:
+1
-1
@@ -40,7 +40,7 @@ export function addCiRegistryAuth(ci_registry, registryAuthJson) {
|
||||
}
|
||||
|
||||
export function mergeArgRegistryAuthJson(registryAuthJson) {
|
||||
const argRegistryAuthJson = process.env['REGISTRY_AUTH_JSON'];
|
||||
const argRegistryAuthJson = core.getInput('registry_auth_json');
|
||||
if (argRegistryAuthJson != null && argRegistryAuthJson.trim().length > 0) {
|
||||
try {
|
||||
const argRegistryAuth = JSON.parse(argRegistryAuthJson);
|
||||
|
||||
Reference in New Issue
Block a user