Skip to content

Commit 848b2de

Browse files
committed
fix: CI pipeline - remove --no-build and --no-restore flags to fix assets file issues
1 parent c7fb10c commit 848b2de

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
run: dotnet restore
3434

3535
- name: Build
36-
run: dotnet build --no-restore --configuration Release
36+
run: dotnet build --configuration Release
3737

3838
- name: Run tests
39-
run: dotnet test --no-build --configuration Release --verbosity normal --collect:"XPlat Code Coverage" --logger trx --results-directory ./TestResults
39+
run: dotnet test --configuration Release --verbosity normal --collect:"XPlat Code Coverage" --logger trx --results-directory ./TestResults
4040

4141
- name: Upload coverage reports to Codecov
4242
uses: codecov/codecov-action@v5
@@ -74,11 +74,11 @@ jobs:
7474
run: dotnet restore
7575

7676
- name: Build
77-
run: dotnet build --no-restore --configuration Release
77+
run: dotnet build --configuration Release
7878

7979
- name: Pack NuGet packages
8080
run: |
81-
dotnet pack src/SmartRAG/SmartRAG.csproj --no-build --configuration Release --output ./nupkgs
81+
dotnet pack src/SmartRAG/SmartRAG.csproj --configuration Release --output ./nupkgs
8282
8383
- name: Upload artifacts
8484
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)