From b05eeb4a4467b140e9ee1adca8dbf7422b79701a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A5l-Magnus=20Sl=C3=A5tto?= Date: Wed, 9 Aug 2023 11:19:26 +0200 Subject: [PATCH] chore(logic): Runner should be removed before termination --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 00bc5152..818f9909 100644 --- a/src/index.js +++ b/src/index.js @@ -18,8 +18,8 @@ async function start() { } async function stop() { - await aws.terminateEc2Instance(); await gh.removeRunner(); + await aws.terminateEc2Instance(); } (async function () {