refactor: drop unnecessary check

This commit is contained in:
Jozef Steinhübl 2024-11-16 11:58:07 +01:00
parent 9a3109a1b7
commit 6f5df31427
No known key found for this signature in database
GPG Key ID: E6BC90C91973B08F

View File

@ -11,11 +11,6 @@ const registries = JSON.parse(getInput("registries") || "[]");
const registryUrl = getInput("registry-url");
const scope = getInput("scope");
if (registries.length > 0 && (registryUrl || scope)) {
setFailed("Cannot specify both 'registries' and 'registry-url' or 'scope'.");
process.exit(1);
}
if (registryUrl) {
registries.push({
url: registryUrl,