Skip to content

Commit ff7b916

Browse files
authored
Remove --no-restore from build step in CI (#171)
The build step in the publish workflow no longer uses the --no-restore flag, ensuring that dependencies are restored during the build process.
1 parent ce6935a commit ff7b916

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: dotnet restore
5151

5252
- name: Build solution
53-
run: dotnet build --configuration Release --no-restore
53+
run: dotnet build --configuration Release
5454

5555
- name: Run tests
5656
run: dotnet test --configuration Release --no-build --verbosity normal -p:PublishAot=false

0 commit comments

Comments
 (0)