File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/Tools.CodeOfChaos.Types Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments