Skip to content

Commit

Permalink
NUKE fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jp2masa committed Sep 5, 2024
1 parent 7469252 commit 27a5621
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions build/_build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,14 @@ TagName is not null

private string PackageVersionSuffix =>
IsLocalBuild
? "-local"
? String.Empty
: (
TagVersion is not null
? $"-{TagVersion.Release}"
? (
String.IsNullOrEmpty(TagVersion.Release)
? String.Empty
: $"-{TagVersion.Release}"
)
: $"-build2.{BuildNumber}+{GitHubActions.Sha[0..7]}"
);

Expand Down

0 comments on commit 27a5621

Please sign in to comment.