We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 273f36b commit ec0a0ceCopy full SHA for ec0a0ce
.github/workflows/ci.yml
@@ -22,9 +22,6 @@ jobs:
22
7.0.x
23
8.0.x
24
25
- - name: Get Certificates
26
- run: cert-sync --user cacert.pem
27
-
28
- name: Build
29
run: ./build.sh
30
build.cake
@@ -71,7 +71,10 @@ Task("Restore-Packages")
71
.IsDependentOn("Clean")
72
.Does(() =>
73
{
74
- NuGetRestore("./src/Mages.sln");
+ NuGetRestore("./src/Mages.sln", new NuGetRestoreSettings
75
+ {
76
+ DisableParallelProcessing = isRunningOnUnix && isRunningOnGitHubActions,
77
+ });
78
});
79
80
Task("Update-Assembly-Version")
0 commit comments