From eb91fce84fbcf0d9edb018b062fd611446fdc177 Mon Sep 17 00:00:00 2001 From: AdmiringWorm Date: Tue, 23 Mar 2021 12:11:32 +0100 Subject: [PATCH] (build) Change preferred build provider to github action --- .github/workflows/build.yml | 2 ++ recipe.cake | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bf584fa..d13d7da 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,6 +8,8 @@ on: - "release/**" - "hotfix/**" - "feature/**" + tags: + - "*" paths-ignore: - "README.md" pull_request: diff --git a/recipe.cake b/recipe.cake index 04cb673..d47d11c 100644 --- a/recipe.cake +++ b/recipe.cake @@ -14,6 +14,8 @@ BuildParameters.SetParameters( shouldRunDotNetCorePack: true, solutionFilePath: "./Cake.Transifex.sln", testFilePattern: "/**/*.Tests.csproj", + preferredBuildAgentOperatingSystem: PlatformFamily.Linux, + preferredBuildProviderType: BuildProviderType.GitHubActions, shouldRunCodecov: true, shouldRunCoveralls: false, shouldUseDeterministicBuilds: true,