Skip to content

Commit

Permalink
自动构建+自动发布
Browse files Browse the repository at this point in the history
  • Loading branch information
MakesYT committed Apr 11, 2024
1 parent c7030fe commit a30de29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class Build : NukeBuild
{
Object = GitTasks.GitCurrentCommit(),
Tag = AvaloniaProject.GetProperty("Version"),
Message = "Test",
Message = AvaloniaProject.GetProperty("Version"),
}).Result;
var reference = _gitHubClient.Git.Reference.Create(gitRepository.GetGitHubOwner(),
gitRepository.GetGitHubName(),
Expand All @@ -193,7 +193,7 @@ class Build : NukeBuild
{
Name = AvaloniaProject.GetProperty("Version"),
Prerelease = true,
Draft = true,
Draft = false,
Body = body.ToString()
};
var release = _gitHubClient.Repository.Release.Create(gitRepository.GetGitHubOwner(), gitRepository.GetGitHubName(),
Expand Down

0 comments on commit a30de29

Please sign in to comment.