Disable publish for master - should be activated as soon as it's merged back for the first time.

This commit is contained in:
Keivn Sommer 2021-05-14 23:27:50 +02:00
parent 27838b062c
commit dd1b0a9edc
2 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,6 @@ name: ci_publish
on:
push:
branches:
- master
- 'releases/*'
jobs:

View File

@ -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],