File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ jobs:
3333 dotnet-version : ${{ env.DOTNET_VERSION }}
3434
3535 - name : Restore dependencies
36- run : dotnet restore
36+ run : dotnet restore SharpCoreDB.sln
3737
3838 - name : Build
39- run : dotnet build --configuration Release --no-restore
39+ run : dotnet build SharpCoreDB.sln --configuration Release --no-restore
4040
4141 - name : Test
42- run : dotnet test --configuration Release --no-build --verbosity normal --logger trx --collect:"XPlat Code Coverage"
42+ run : dotnet test SharpCoreDB.sln --configuration Release --no-build --verbosity normal --logger trx --collect:"XPlat Code Coverage"
4343
4444 - name : Upload test results
4545 if : always()
@@ -103,7 +103,7 @@ jobs:
103103 dotnet-version : ${{ env.DOTNET_VERSION }}
104104
105105 - name : Pack
106- run : dotnet pack --configuration Release --output ./artifacts
106+ run : dotnet pack SharpCoreDB.sln --configuration Release --output ./artifacts
107107
108108 - name : Upload packages
109109 uses : actions/upload-artifact@v4
@@ -134,4 +134,4 @@ jobs:
134134 dotnet nuget push artifacts/*.nupkg \
135135 --api-key ${{ secrets.NUGET_API_KEY }} \
136136 --source https://api.nuget.org/v3/index.json \
137- --skip-duplicate
137+ --skip-duplicate
You can’t perform that action at this time.
0 commit comments