Skip to content

Commit 451bf1f

Browse files
authored
fix: further fix of result handling in windUpJob.task.js
Resolves #264
1 parent ebcbc66 commit 451bf1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/windUpJob.task.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = async (result) => {
2727
core.setOutput(outputs.last_release_git_tag, lastRelease.gitTag);
2828
}
2929

30-
if (!nextRelease) {
30+
if (!nextRelease?.version) {
3131
core.debug('No release published.');
3232
return;
3333
}

0 commit comments

Comments
 (0)