Skip to content

Commit

Permalink
ci: Add ci-build version suffix only when beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Cubik65536 committed Aug 31, 2023
1 parent 3e80969 commit dddc252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ext {
}

getModVersion = {
if (isOnGithubActions()) {
if (isOnGithubActions() && environmentMap.REDEN_BUILD_TYPE == "BETA") {
return "${project.mod_version}.${getVersionPatch([])}+${getVersionGit([])}-${getVersionType()}+dev-ci-build.${getGitHubActionID()}"
} else {
return "${project.mod_version}.${getVersionPatch([])}+${getVersionGit([])}-${getVersionType()}"
Expand Down

0 comments on commit dddc252

Please sign in to comment.