File tree 3 files changed +4
-6
lines changed
3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -185,12 +185,11 @@ jobs:
185
185
Write-Output "SUCCESS: Module dependencies were found."
186
186
Write-Output "INFO: Required modules are $($requiredModules.ModuleName -join ', ')."
187
187
Write-Output "INFO: Setting location to the PowerShell modules location on a Ubuntu-based GitHub runner."
188
- Set-Location '/home/runner/.local/share/powershell/Modules/'
188
+ Set-Location '/home/runner/.local/share/powershell/Modules/'
189
189
foreach ($module in $requiredModules) {
190
190
$requiredModuleName = $module.ModuleName
191
191
if ($requiredModuleName -eq 'VMware.PowerCLI') {
192
192
Write-Output "INFO: Installing version defined in the manifest from the PowerShell Gallery."
193
- Uninstall-Module -Name VMware.PowerCLI -AllVersions -Force
194
193
Install-Module -Name VMware.PowerCLI -RequiredVersion $module.RequiredVersion -Force
195
194
} else {
196
195
New-Item $requiredModuleName -ItemType Directory
@@ -238,4 +237,3 @@ jobs:
238
237
} else {
239
238
Write-Error "FAILED: Module manifest file not found at path '$moduleManifest'."
240
239
}
241
-
Original file line number Diff line number Diff line change 1
1
# Release History
2
2
3
- ## v1.7.2
3
+ ## v1.8.0
4
4
5
- > Release Date: Unreleased
5
+ > Release Date: 2024-04-30
6
6
7
7
Breaking Change:
8
8
Original file line number Diff line number Diff line change 11
11
RootModule = ' .\VMware.CloudFoundation.PasswordManagement.psm1'
12
12
13
13
# Version number of this module.
14
- ModuleVersion = ' 1.7.2.1008 '
14
+ ModuleVersion = ' 1.8.0.1000 '
15
15
16
16
# Supported PSEditions
17
17
# CompatiblePSEditions = @()
You can’t perform that action at this time.
0 commit comments