From f661701fe0c30bbe65a7cb79c5c8be5d94133ac7 Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Sat, 7 Jan 2023 21:58:13 +0100 Subject: [PATCH] (maint) fix releasing on GitHub Actions --- recipe.cake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipe.cake b/recipe.cake index 417cee8..0288818 100644 --- a/recipe.cake +++ b/recipe.cake @@ -13,7 +13,9 @@ BuildParameters.SetParameters( shouldRunDotNetCorePack: true, shouldUseDeterministicBuilds: true, gitterMessage: "@/all " + standardNotificationMessage, - twitterMessage: standardNotificationMessage); + twitterMessage: standardNotificationMessage, + preferredBuildProviderType: BuildProviderType.GitHubActions, + preferredBuildAgentOperatingSystem: PlatformFamily.Linux); BuildParameters.PrintParameters(Context);