diff --git a/.github/workflows/ci_publish.yml b/.github/workflows/ci_publish.yml index 3c3eeb5..28404fd 100644 --- a/.github/workflows/ci_publish.yml +++ b/.github/workflows/ci_publish.yml @@ -19,6 +19,7 @@ name: ci_publish on: push: branches: + - master - 'releases/*' jobs: diff --git a/build/Build.cs b/build/Build.cs index bb2de43..2810ed6 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -21,7 +21,7 @@ using static Nuke.Common.Tools.DotNet.DotNetTasks; InvokedTargets = new[] {nameof(Ci)}, CacheKeyFiles = new string[0])] [GitHubActions("ci_publish", GitHubActionsImage.UbuntuLatest, - OnPushBranches = new[] {"releases/*"}, + OnPushBranches = new[] {"master", "releases/*"}, AutoGenerate = true, InvokedTargets = new[] {nameof(CiPublish)}, CacheKeyFiles = new string[0],