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 77340c7 commit 61184bdCopy full SHA for 61184bd
‎.github/workflows/Test-ModuleLocal.yml‎
@@ -101,6 +101,7 @@ jobs:
101
$name = Get-ChildItem "outputs/module" | Select-Object -ExpandProperty Name
102
$path = Install-PSModule -Path "outputs/module/$name" -PassThru
103
Write-Warning $path
104
+ "name=$name" >> $env:GITHUB_OUTPUT
105
"path=$path" >> $env:GITHUB_OUTPUT
106
107
- name: Test-ModuleLocal
@@ -131,4 +132,5 @@ jobs:
131
132
Run_Path: ${{ steps.import-module.outputs.path }}
133
WorkingDirectory: ${{ inputs.WorkingDirectory }}
134
Prescript: |
- Import-Module -Name '${{ steps.import-module.outputs.path }}'
135
+ Import-Module -Name '${{ steps.import-module.outputs.name }}' -RequiredVersion 999.0.0
136
+q
0 commit comments