We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d94b534 commit d6775bbCopy full SHA for d6775bb
actions_bootstrap.ps1
@@ -60,6 +60,11 @@ foreach ($module in $modulesToInstall) {
60
# this only affects windows builds
61
Install-Module @installSplat -SkipPublisherCheck
62
}
63
+ elseif ($module.ModuleName -eq 'PSAppDeployToolkit' ) {
64
+ # special case for Pester certificate mismatch with older Pester versions - https://github.com/pester/Pester/issues/2389
65
+ # this only affects windows builds
66
+ Install-Module @installSplat -AllowPreRelease
67
+ }
68
else {
69
Install-Module @installSplat
70
0 commit comments