From 210ce8a170847b1ed9ea432835a21fc841e6e7d4 Mon Sep 17 00:00:00 2001 From: David De Smet <2607383+idaviddesmet@users.noreply.github.com> Date: Wed, 6 Apr 2022 15:10:03 -0500 Subject: [PATCH] Updated GitHub workflow --- .github/workflows/dotnet-core.yml | 12 ++++++++++++ build.cake | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 20c0376..835f981 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -8,11 +8,23 @@ on: - master paths: - 'src/**' + - build.cake + - CodeCoverage.runsettings + - dotnet-tools.json + - global.json + - Key.snk + - NaCl.Core.sln pull_request: branches: - master paths: - 'src/**' + - build.cake + - CodeCoverage.runsettings + - dotnet-tools.json + - global.json + - Key.snk + - NaCl.Core.sln release: types: - published diff --git a/build.cake b/build.cake index 965b284..c4ace0a 100644 --- a/build.cake +++ b/build.cake @@ -58,7 +58,7 @@ Task("Test") }); Task("Pack") - .Description("Creates NuGet packages and outputs them to the artifacts directory.") + .Description("Creates the NuGet package and outputs them to the artifacts directory.") .Does(() => { DotNetCorePack( @@ -75,7 +75,7 @@ Task("Pack") }); Task("Default") - .Description("Cleans, restores NuGet packages, builds the solution, runs unit tests and then creates NuGet packages.") + .Description("Clean, restore, build the solution, runs unit tests and then create the NuGet package.") .IsDependentOn("Build") .IsDependentOn("Test") .IsDependentOn("Pack");