From 00311793aa104bf99501373756461475b6752f16 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Wed, 19 Feb 2020 22:02:41 +0900 Subject: [PATCH] fix: Add await --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 2902f26..42a6af3 100644 --- a/src/main.ts +++ b/src/main.ts @@ -34,7 +34,7 @@ export async function run(): Promise { await git.pushTag(inps.TagName, inps.TagMessage); core.info(`[INFO] Deleting ${workDir}`); - io.rmRF(workDir); + await io.rmRF(workDir); core.info('[INFO] Action successfully completed');