From dd1b0a9edc8044e07bc83c7a985a9623d7ff2416 Mon Sep 17 00:00:00 2001 From: Keivn Sommer Date: Fri, 14 May 2021 23:27:50 +0200 Subject: [PATCH] Disable publish for master - should be activated as soon as it's merged back for the first time. --- .github/workflows/ci_publish.yml | 1 - build/Build.cs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci_publish.yml b/.github/workflows/ci_publish.yml index 28404fd..3c3eeb5 100644 --- a/.github/workflows/ci_publish.yml +++ b/.github/workflows/ci_publish.yml @@ -19,7 +19,6 @@ name: ci_publish on: push: branches: - - master - 'releases/*' jobs: diff --git a/build/Build.cs b/build/Build.cs index fa69866..94b0b57 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[] {"master", "releases/*"}, + OnPushBranches = new[] {"releases/*"}, AutoGenerate = true, InvokedTargets = new[] {nameof(CiPublish)}, CacheKeyFiles = new string[0],