Skip to content

Commit

Permalink
refactor: Add info message
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceiris committed Feb 19, 2020
1 parent 371989e commit 8e6c12a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 8e6c12a

Please sign in to comment.