Commit f7f988f
committed
ci: skip NuGet package generation during test runs
Update the GitHub Actions workflow to add `-p:GeneratePackageOnBuild=false`
to the dotnet test command. This prevents unnecessary package creation during
CI test runs, improving build performance.
The project has `<GeneratePackageOnBuild>true</GeneratePackageOnBuild>` set,
which causes packages to be created on every build, including test runs.
Packages are still properly created during the "Pack" step for releases.
Benefits:
- Faster CI test execution
- Cleaner build output
- Packages only created when actually needed (Release builds)1 parent aeb86f9 commit f7f988f
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
0 commit comments