We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f89c4c commit 6ee41f5Copy full SHA for 6ee41f5
1 file changed
.github/workflows/package.yml
@@ -245,9 +245,13 @@ jobs:
245
}
246
247
Remove-Item $PSModuleZipFilePath -ErrorAction SilentlyContinue | Out-Null
248
- Compress-Archive -Path $DGatewayPSModulePath -Destination $PSModuleZipFilePath -CompressionLevel Optimal
249
250
$PSModuleParentPath = Split-Path $DGatewayPSModulePath -Parent
+
251
+ Push-Location $PSModuleParentPath
252
+ Compress-Archive -Path $DGatewayPSModulePath -Destination $PSModuleZipFilePath -CompressionLevel Optimal
253
+ Pop-Location
254
255
New-ModulePackage $DGatewayPSModulePath $PSModuleParentPath
256
257
- name: Sign executables
0 commit comments