elsa-core/build/Build.CI.GitHubActions.cs
Marko Lahma aa14e7f536
Upgrade to NUKE 8.1 (#5952)
Co-authored-by: Sipke Schoorstra <sipkeschoorstra@outlook.com>
2024-09-12 09:56:06 -07:00

15 lines
452 B
C#

using Nuke.Common.CI.GitHubActions;
using Nuke.Components;
[GitHubActions(
"pr",
GitHubActionsImage.UbuntuLatest,
OnPullRequestBranches = ["main"],
OnPullRequestIncludePaths = ["**/*"],
PublishArtifacts = false,
InvokedTargets = [nameof(ICompile.Compile), nameof(ITest.Test), nameof(IPack.Pack)],
CacheKeyFiles = [],
ConcurrencyCancelInProgress = true
)
]
public partial class Build;