mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2025-11-07 10:46:56 +00:00
Merge pull request #265 from mgerlach/patch-1
fix: further fix of result handling in windUpJob.task.js
This commit is contained in:
commit
b67d9790a5
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ module.exports = async (result) => {
|
||||||
core.setOutput(outputs.last_release_git_tag, lastRelease.gitTag);
|
core.setOutput(outputs.last_release_git_tag, lastRelease.gitTag);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!nextRelease) {
|
if (!nextRelease?.version) {
|
||||||
core.debug('No release published.');
|
core.debug('No release published.');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue