From 6f5df3142700913016a7c7b1a157316e9823fc2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Sat, 16 Nov 2024 11:58:07 +0100 Subject: [PATCH] refactor: drop unnecessary check --- src/index.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/index.ts b/src/index.ts index 8c091ea..b67a9b8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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,