Skip to content

Commit

Permalink
fix: Add await
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceiris committed Feb 19, 2020
1 parent 8e6c12a commit 0031179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export async function run(): Promise<void> {
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');

Expand Down

0 comments on commit 0031179

Please sign in to comment.