From 8e6c12a2b5f973c8736f831398d0fe7c980f1431 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Wed, 19 Feb 2020 17:18:35 +0900 Subject: [PATCH] refactor: Add info message --- src/main.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index c17796868..2902f264c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -32,10 +32,12 @@ export async function run(): Promise { ); 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);