mirror of
https://github.com/microsoft/playwright-cli.git
synced 2026-09-14 19:59:39 +08:00
12 lines
258 B
PowerShell
12 lines
258 B
PowerShell
$version=$env:npm_package_version
|
|
|
|
$path = "out\zip"
|
|
If(!(test-path $path))
|
|
{
|
|
New-Item -ItemType Directory -Force -Path $path
|
|
}
|
|
|
|
cd out\binary\win32
|
|
Compress-Archive -Force -Path * -DestinationPath ..\..\zip\playwright-cli-$version-win32.zip
|
|
cd ..\..\..
|