5
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2025-11-07 10:46:56 +00:00

fix: further fix of result handling in windUpJob.task.js

Resolves #264
This commit is contained in:
Martin Gerlach 2025-10-09 16:32:45 +02:00 committed by GitHub
parent ebcbc66374
commit 451bf1fa96
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);
}
if (!nextRelease) {
if (!nextRelease?.version) {
core.debug('No release published.');
return;
}