Skip to content

Commit

Permalink
Updated GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddesmet committed Apr 6, 2022
1 parent 609cfc6 commit 210ce8a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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");
Expand Down

0 comments on commit 210ce8a

Please sign in to comment.