From b628b39a1cdc8be6dd18a602fa1025d626aadd1d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan-Otto=20Kr=C3=B6pke?= <mail@jkroepke.de>
Date: Sun, 3 Nov 2024 19:28:55 +0100
Subject: [PATCH] add warning to post

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

diff --git a/dist/index.js b/dist/index.js
index b0db713..973f535 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -1921,6 +1921,7 @@ if (!stateHelper.IsPost) {
 }
 // Post
 else {
+    core.warning(`cleanup`);
     cleanup();
 }
 
diff --git a/src/main.ts b/src/main.ts
index 0684c6f..fc3d0d2 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -43,5 +43,6 @@ if (!stateHelper.IsPost) {
 }
 // Post
 else {
+  core.warning(`cleanup`)
   cleanup()
 }