2023-07-03 23:27:06 +10:00
|
|
|
#!/usr/bin/env bash
|
2021-01-05 14:04:47 -08:00
|
|
|
set -e
|
|
|
|
set +x
|
|
|
|
|
|
|
|
trap "cd $(pwd -P)" EXIT
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
|
2024-04-19 20:36:15 +02:00
|
|
|
AZ_STORAGE_ACCOUNT="playwright2"
|
2021-01-05 14:04:47 -08:00
|
|
|
PACKAGE_VERSION=$(node -p "require('../../package.json').version")
|
2024-04-19 20:36:15 +02:00
|
|
|
|
2025-03-25 15:04:09 +01:00
|
|
|
platforms=("mac" "mac-arm64" "linux" "linux-arm64" "win32_x64" "win32_arm64")
|
|
|
|
|
|
|
|
for platform in "${platforms[@]}"; do
|
|
|
|
az storage blob upload -c builds --auth-mode login --account-name ${AZ_STORAGE_ACCOUNT} -f ./output/playwright-${PACKAGE_VERSION}-${platform}.zip -n "${AZ_UPLOAD_FOLDER}/playwright-${PACKAGE_VERSION}-${platform}.zip"
|
|
|
|
done
|