From 20d84c594fe3db52e80266ce4e5c147ad905cf04 Mon Sep 17 00:00:00 2001 From: Alex Evanczuk Date: Sat, 15 Oct 2022 08:13:02 -0400 Subject: [PATCH] Drop warning related to no input files --- src/main.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.ts b/src/main.ts index dcf9d31..52fa455 100644 --- a/src/main.ts +++ b/src/main.ts @@ -62,9 +62,6 @@ async function run() { const rel = await release(config, new GitHubReleaser(gh)); if (config.input_files) { const files = paths(config.input_files); - if (files.length == 0) { - console.warn(`🤔 ${config.input_files} not include valid file.`); - } const currentAssets = rel.assets; const assets = await Promise.all( files.map(async path => {