Skip to content

Commit 8bb0530

Browse files
committed
Feat: Update tools
1 parent 84693d7 commit 8bb0530

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ jobs:
3737
- name: Run tests - Extensions.Serilog
3838
run: dotnet run -c Release --no-restore --no-build
3939
working-directory: "tests/Tests.CodeOfChaos.Extensions.Serilog"
40+
- name: Run tests - Extensions.DependencyInjection
41+
run: dotnet run -c Release --no-restore --no-build
42+
working-directory: "tests/Tests.CodeOfChaos.Extensions.DependencyInjection"
43+
- name: Run tests - Extensions.DependencyInjection.Generators
44+
run: dotnet run -c Release --no-restore --no-build
45+
working-directory: "tests/Tests.CodeOfChaos.Extensions.DependencyInjection.Generators"
4046

4147
- name: Publish to NuGet
4248
env:
@@ -46,4 +52,6 @@ jobs:
4652
dotnet nuget push src/CodeOfChaos.Extensions.AspNetCore/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
4753
dotnet nuget push src/CodeOfChaos.Extensions.EntityFrameworkCore/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
4854
dotnet nuget push src/CodeOfChaos.Extensions.Serilog/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
49-
dotnet nuget push src/CodeOfChaos.Extensions.Analyzers/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
55+
dotnet nuget push src/CodeOfChaos.Extensions.Analyzers/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
56+
dotnet nuget push src/CodeOfChaos.Extensions.DependencyInjection/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
57+
dotnet nuget push src/CodeOfChaos.Extensions.DependencyInjection.Generators/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate

src/Tools.CodeOfChaos.Extensions/Program.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ public static async Task Main(string[] args) {
2626
"CodeOfChaos.Extensions.EntityFrameworkCore",
2727
"CodeOfChaos.Extensions.AspNetCore",
2828
"CodeOfChaos.Extensions.Serilog",
29-
"CodeOfChaos.Extensions.Analyzers"
29+
"CodeOfChaos.Extensions.Analyzers",
30+
"CodeOfChaos.Extensions.DependencyInjection",
31+
"CodeOfChaos.Extensions.DependencyInjection.Generators"
3032
);
3133
string oneLineArgs = InputHelper.ToOneLine(args).Replace("%PROJECTS%", projects);
3234

0 commit comments

Comments
 (0)