Skip to content

Commit 8e0a3a3

Browse files
committed
Fix: Update Github workflow & tools
1 parent 4e28bf9 commit 8e0a3a3

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,14 @@ jobs:
3131
- name: Run tests - Extensions
3232
run: dotnet run -c Release --no-restore --no-build
3333
working-directory: "tests/Tests.CodeOfChaos.Types.TypedValueStore"
34+
- name: Run tests - Extensions
35+
run: dotnet run -c Release --no-restore --no-build
36+
working-directory: "tests/Tests.CodeOfChaos.Types.DataSeeder"
3437

3538
- name: Publish to NuGet
3639
env:
3740
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
3841
run: |
3942
dotnet nuget push src/CodeOfChaos.Types/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
4043
dotnet nuget push src/CodeOfChaos.Types.TypedValueStore/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
44+
dotnet nuget push src/CodeOfChaos.Types.DataSeeder/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate

src/Tools.CodeOfChaos.Types/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ public static async Task Main(string[] args) {
2323
// Code is the true saviour
2424
string projects = string.Join(";",
2525
"CodeOfChaos.Types",
26-
"CodeOfChaos.Types.TypedValueStore"
26+
"CodeOfChaos.Types.TypedValueStore",
27+
"CodeOfChaos.Types.DataSeeder"
2728
);
2829
string oneLineArgs = InputHelper.ToOneLine(args).Replace("%PROJECTS%", projects);
2930

0 commit comments

Comments
 (0)