We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb931de commit ef257a0Copy full SHA for ef257a0
1 file changed
.github/workflows/manual-publish-powershell-gallery.yml
@@ -46,6 +46,7 @@ jobs:
46
run: |
47
# Test module manifest
48
$manifestPath = "./src/PSBlogger.psd1"
49
+ $manifestDefinition = "./src/PSBlogger.psm1"
50
Write-Host "Testing module manifest at: $manifestPath"
51
52
# Test manifest syntax
@@ -65,7 +66,7 @@ jobs:
65
66
}
67
68
# Test that the module can be imported successfully
- Import-Module $manifestPath -Force
69
+ Import-Module $manifestDefinition -Force
70
$loadedModule = Get-Module PSBlogger
71
Write-Host "Successfully imported module. Exported commands:"
72
$loadedModule.ExportedCommands.Keys | Sort-Object | ForEach-Object { Write-Host " - $_" }
0 commit comments