Revert "start-proxy: Skip proxy setup if no credentials are available"

This commit is contained in:
Marco Gario 2025-01-29 09:33:23 +01:00 committed by GitHub
parent 54b1c84213
commit 7fdc1b8d67
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 1 additions and 11 deletions

View file

@ -99,12 +99,6 @@ async function runWrapper() {
actionsUtil.getOptionalInput("registries_credentials"),
actionsUtil.getOptionalInput("language"),
);
if (credentials.length === 0) {
logger.info("No credentials found, skipping proxy setup.");
return;
}
logger.info(
`Credentials loaded for the following registries:\n ${credentials
.map((c) => credentialToStr(c))