From 451bf1fa96343272b4efadb5731fe2e25073d24f Mon Sep 17 00:00:00 2001 From: Martin Gerlach Date: Thu, 9 Oct 2025 16:32:45 +0200 Subject: [PATCH] fix: further fix of result handling in windUpJob.task.js Resolves #264 --- src/windUpJob.task.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windUpJob.task.js b/src/windUpJob.task.js index 89a33e5..07a3bbf 100644 --- a/src/windUpJob.task.js +++ b/src/windUpJob.task.js @@ -27,7 +27,7 @@ module.exports = async (result) => { core.setOutput(outputs.last_release_git_tag, lastRelease.gitTag); } - if (!nextRelease) { + if (!nextRelease?.version) { core.debug('No release published.'); return; }