feat: warn file invalid when upload

This commit is contained in:
stefanji 2019-12-28 08:01:15 +08:00
parent d651ef48cb
commit d44577d2eb

View file

@ -31,7 +31,11 @@ async function run() {
});
let rel = await release(config, new GitHubReleaser(gh));
if (config.input_files) {
paths(config.input_files).forEach(async path => {
const files = paths(config.input_files)
if (files.length == 0) {
console.warn(`⚠️ ${config.input_files} not include valid file.`)
}
files.forEach(async path => {
await upload(gh, rel.upload_url, path);
});
}