refactor: Add info message

This commit is contained in:
peaceiris 2020-02-19 17:18:35 +09:00
parent 371989e187
commit 8e6c12a2b5

View File

@ -32,10 +32,12 @@ export async function run(): Promise<void> {
);
await git.push(inps.PublishBranch, inps.ForceOrphan);
await git.pushTag(inps.TagName, inps.TagMessage);
core.info('[INFO] Action successfully completed');
core.info(`[INFO] Deleting ${workDir}`);
io.rmRF(workDir);
core.info('[INFO] Action successfully completed');
return;
} catch (e) {
throw new Error(e);