Update README.md (#1)

nuke fix
This commit is contained in:
Hasan Manzak
2023-02-23 04:38:03 +03:00
committed by GitHub
parent 515297502c
commit 333cba43c6
4 changed files with 23 additions and 10 deletions

View File

@@ -14,12 +14,15 @@ using static Nuke.Common.IO.FileSystemTasks;
using static Nuke.Common.Tools.DotNet.DotNetTasks;
[ShutdownDotNetAfterServerBuild]
[GitHubActions("ci", GitHubActionsImage.UbuntuLatest,
[GitHubActions("ci", GitHubActionsImage.Ubuntu2004,
FetchDepth = 0,
OnPullRequestBranches = new[] {"master", "releases/*"},
AutoGenerate = true,
InvokedTargets = new[] {nameof(Ci)},
CacheKeyFiles = new string[0])]
[GitHubActions("ci_publish", GitHubActionsImage.UbuntuLatest,
CacheKeyFiles = new string[0]
)]
[GitHubActions("ci_publish", GitHubActionsImage.Ubuntu2004,
FetchDepth = 0,
OnPushBranches = new[] { "releases/*" },
OnPushTags = new[] { "v*" },
AutoGenerate = true,
@@ -33,7 +36,7 @@ class Build : NukeBuild
[GitRepository] readonly GitRepository GitRepository;
[GitVersion] readonly GitVersion GitVersion;
[GitVersion(Framework = "netcoreapp3.1")] readonly GitVersion GitVersion;
[Solution] readonly Solution Solution;