From d07dc04542a742527a79cbdc8d12c4bad8dd7a76 Mon Sep 17 00:00:00 2001 From: SKProCH Date: Mon, 14 Aug 2023 02:47:23 +0300 Subject: [PATCH] Remove on-push-paths from a ci script --- .github/workflows/main.yml | 2 -- build/Build.cs | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 63b43de5..df1afa88 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,8 +20,6 @@ on: push: branches: - master - paths: - - '![no nightly]' jobs: ubuntu-latest: diff --git a/build/Build.cs b/build/Build.cs index e6c1f27f..45b21bf5 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -14,8 +14,7 @@ [GitHubActions("main", GitHubActionsImage.UbuntuLatest, AutoGenerate = true, OnPushBranches = new[] { "master" }, InvokedTargets = new[] { nameof(PublishNugetPackages) }, - ImportSecrets = new[] { nameof(NuGetApiKey) }, - OnPushExcludePaths = new[] { "[no nightly]" })] + ImportSecrets = new[] { nameof(NuGetApiKey) })] partial class Build : NukeBuild { [Solution] readonly Solution Solution = null!; BuildParameters Parameters { get; set; } = null!;