fix: more logging

This commit is contained in:
Tom Hu 2023-11-10 10:27:27 +11:00
parent 4ec3acecb4
commit 96c10b3f72
No known key found for this signature in database
GPG key ID: 79155678363963D2
3 changed files with 23 additions and 1 deletions

View file

@ -40,7 +40,17 @@ try {
);
core.info(`${console.trace()}`);
}).on('finish', async () => {
if (fs.existsSync(filename)) {
core.info('IT EXISTS');
} else {
core.info('IT DOESNT EXIST');
}
filePath.close();
if (fs.existsSync(filename)) {
core.info('IT EXISTS');
} else {
core.info('IT DOESNT EXIST');
}
await verify(filename, platform, uploaderVersion, verbose, failCi);
await versionInfo(platform, uploaderVersion);