Skip to content

Commit 01fa391

Browse files
committed
(GH-50) Should have been in last commit
1 parent eabc417 commit 01fa391

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Source/GitHubReleaseManager.Cli/Program.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ private static async Task<int> ExportReleasesAsync(ExportSubOptions subOptions,
222222
}
223223
}
224224

225+
private static async Task CreateRelease(GitHubClient github, string owner, string repository, string milestone, string targetCommitish, IList<string> assets, Config configuration)
225226
{
226227
var releaseNotesBuilder = new ReleaseNotesBuilder(new DefaultGitHubClient(github, owner, repository), owner, repository, milestone, configuration);
227228

@@ -259,6 +260,7 @@ private static async Task<int> ExportReleasesAsync(ExportSubOptions subOptions,
259260
}
260261
}
261262

263+
private static async Task AddAssets(GitHubClient github, string owner, string repository, string milestone, IList<string> assetPaths)
262264
{
263265
var releases = await github.Release.GetAll(owner, repository);
264266

0 commit comments

Comments
 (0)