add some randomness to tag
to allow multiple patches with the same source to be created
This commit is contained in:
parent
66580eed52
commit
9f0369bbd6
@ -5,8 +5,8 @@
|
|||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<AssemblyVersion>1.5.9</AssemblyVersion>
|
<AssemblyVersion>1.5.10</AssemblyVersion>
|
||||||
<FileVersion>1.5.9</FileVersion>
|
<FileVersion>1.5.10</FileVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -64,9 +64,11 @@ namespace EftPatchHelper.Tasks
|
|||||||
|
|
||||||
string releaseName = $"{sourceTail} to {targetTail}";
|
string releaseName = $"{sourceTail} to {targetTail}";
|
||||||
|
|
||||||
|
string tag = $"{sourceTail}_{new Random().Next(100, 999)}";
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var release = repo.RepoCreateRelease(_settings.GiteaReleaseRepoOwner, _settings.GiteaReleaseRepoName, new CreateReleaseOption(null, false, releaseName, false, sourceTail, null));
|
var release = repo.RepoCreateRelease(_settings.GiteaReleaseRepoOwner, _settings.GiteaReleaseRepoName, new CreateReleaseOption(null, false, releaseName, false, tag, null));
|
||||||
|
|
||||||
AnsiConsole.MarkupLine($"[green]Release added: {release.Name.EscapeMarkup()}[/]");
|
AnsiConsole.MarkupLine($"[green]Release added: {release.Name.EscapeMarkup()}[/]");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user