build: adjust version meta for release builds

feat/data-edit-commands 3.5.1
William 7 months ago
parent a3b50a0bf5
commit 75f8bee706
No known key found for this signature in database

@ -168,11 +168,20 @@ logger.lifecycle("Building HuskSync ${version} by William278")
@SuppressWarnings('GrMethodMayBeStatic')
def versionMetadata() {
// Get the last commit hash and if it's a clean head
// Require grgit
if (grgit == null) {
return '-' + System.getenv("GITHUB_RUN_NUMBER") ? 'build.' + System.getenv("GITHUB_RUN_NUMBER") : 'unknown'
return '-unknown'
}
// If grgit DOES exist, get tag for this commit
// If unclean, return the last commit hash with -indev
if (!grgit.status().clean) {
return '-' + grgit.head().abbreviatedId + '-indev'
}
// Otherwise if this matches a tag, return nothing
def tag = grgit.tag.list().find { it.commit.id == grgit.head().id }
return '-' + grgit.head().abbreviatedId + (grgit.status().clean ? '' : '-indev')
if (tag != null) {
return ''
}
return '-' + grgit.head().abbreviatedId
}

Loading…
Cancel
Save