diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e589610..7218903 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: push: branches: - master - - 'features/*' + - 'releases/*' pull_request: branches: - master diff --git a/build/Build.cs b/build/Build.cs index 52a93a1..bafc36f 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -14,7 +14,7 @@ using static Nuke.Common.Tools.DotNet.DotNetTasks; [CheckBuildProjectConfigurations] [ShutdownDotNetAfterServerBuild] [GitHubActions("ci", GitHubActionsImage.UbuntuLatest, - OnPushBranches = new[] {"master", "features/*"}, + OnPushBranches = new[] {"master", "releases/*"}, OnPullRequestBranches = new[] {"master"}, AutoGenerate = true, InvokedTargets = new[] {nameof(Ci)},