From 80058c00d99d107e90ef747c1d2378829ee39766 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan-Otto=20Kr=C3=B6pke?= <mail@jkroepke.de>
Date: Sun, 3 Nov 2024 21:01:53 +0100
Subject: [PATCH] added warning

---
 dist/index.js | 1 +
 src/main.ts   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/dist/index.js b/dist/index.js
index b0db713..35b2387 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -1921,6 +1921,7 @@ if (!stateHelper.IsPost) {
 }
 // Post
 else {
+    core.warning('cleanupp injected');
     cleanup();
 }
 
diff --git a/src/main.ts b/src/main.ts
index 0684c6f..6b85484 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -43,5 +43,5 @@ if (!stateHelper.IsPost) {
 }
 // Post
 else {
-  cleanup()
+  core.warning('cleanupp injected');cleanup()
 }