fix: Message when using the fallback version

releases/v3
Jayrgo 2020-08-12 17:27:06 +02:00
parent 97f1bb3543
commit b525f9ae66
No known key found for this signature in database
GPG Key ID: 498EE77E1F8E0A1E
1 changed files with 2 additions and 2 deletions

View File

@ -40,9 +40,9 @@ module.exports = (releaseType, version) => {
minor = 1
patch = 0
}
}
core.info(`The version could not be detected, the new version is '${major}.${minor}.${patch}'.`)
core.info(`The version could not be detected, using fallback version '${major}.${minor}.${patch}'.`)
}
return `${major}.${minor}.${patch}`
}