File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
59
59
60
60
- Fix Dockerfile to include GitVersion alias for PowerShell Extension profile script.
61
61
- Fix ` .vscode/settings.json ` file to exclude unrecognized words.
62
+ - Fix pipeline issues on Windows PowerShell due to the issue https://github.com/PoshCode/ModuleBuilder/pull/136 .
63
+
62
64
63
65
## [ 0.12.5] - 2024-08-14
64
66
Original file line number Diff line number Diff line change @@ -94,6 +94,17 @@ stages:
94
94
buildType : ' current'
95
95
artifactName : $(buildArtifactName)
96
96
targetPath : ' $(Build.SourcesDirectory)/$(buildFolderName)'
97
+ # This is a workaround for the issue: https://github.com/PoshCode/ModuleBuilder/pull/136
98
+ - task : PowerShell@2
99
+ name : patch_module
100
+ displayName : ' Patch module ModuleBuilder'
101
+ inputs :
102
+ targetType : ' inline'
103
+ script : |
104
+ ./build.ps1 -Task noop
105
+ Install-PSResource -Name 'Viscalyx.Common' -Repository 'PSGallery' -TrustRepository -Quiet -Confirm:$false
106
+ Install-ModulePatch -Uri 'https://raw.githubusercontent.com/viscalyx/Viscalyx.Common/refs/heads/main/patches/ModuleBuilder_3.1.7_patch.json' -Force
107
+ pwsh : true
97
108
- task : PowerShell@2
98
109
name : test
99
110
displayName : ' Run Unit Test'
You can’t perform that action at this time.
0 commit comments