Skip to content

Commit 150c140

Browse files
committed
Removing no-restore flags from ci
1 parent 535dc74 commit 150c140

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,11 @@ jobs:
2323
run: dotnet restore
2424

2525
- name: Build
26-
run: dotnet build --no-restore --configuration Release
26+
run: dotnet build --configuration Release
2727

2828
- name: Test
2929
run: >-
3030
dotnet test
31-
--no-restore
3231
--no-build
3332
--configuration Release
3433
--logger "console;verbosity=normal"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: dotnet restore
2222

2323
- name: Publish
24-
run: dotnet publish --no-restore --configuration Release --artifacts-path ./artifacts
24+
run: dotnet publish --configuration Release --artifacts-path ./artifacts
2525

2626
- name: Upload build artifacts
2727
if: always()

0 commit comments

Comments
 (0)