Skip to content

Commit d6775bb

Browse files
committed
Add -AllowPreRelease to installation of dependent PSAppDeployToolkit module so that we can test this before release
1 parent d94b534 commit d6775bb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

actions_bootstrap.ps1

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ foreach ($module in $modulesToInstall) {
6060
# this only affects windows builds
6161
Install-Module @installSplat -SkipPublisherCheck
6262
}
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+
}
6368
else {
6469
Install-Module @installSplat
6570
}

0 commit comments

Comments
 (0)