5
0
Fork 0
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:
Geoffrey.C 2025-10-10 14:28:03 +08:00 committed by GitHub
commit b67d9790a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
} }