mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
37 lines
1001 B
Bash
Executable File
37 lines
1001 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# remove pkg from archive
|
|
zip -d ../VSCode-darwin.zip "*.pkg"
|
|
|
|
# publish the build
|
|
PACKAGEJSON=`ls ../VSCode-darwin/*.app/Contents/Resources/app/package.json`
|
|
VERSION=`node -p "require(\"$PACKAGEJSON\").version"`
|
|
node build/azure-pipelines/common/publish.js \
|
|
"$VSCODE_QUALITY" \
|
|
darwin \
|
|
archive \
|
|
"VSCode-darwin-$VSCODE_QUALITY.zip" \
|
|
$VERSION \
|
|
true \
|
|
../VSCode-darwin.zip
|
|
|
|
# package Remote Extension Host
|
|
pushd .. && mv vscode-reh-darwin vscode-server-darwin && zip -Xry vscode-server-darwin.zip vscode-server-darwin && popd
|
|
|
|
# publish Remote Extension Host
|
|
node build/azure-pipelines/common/publish.js \
|
|
"$VSCODE_QUALITY" \
|
|
server-darwin \
|
|
archive-unsigned \
|
|
"vscode-server-darwin.zip" \
|
|
$VERSION \
|
|
true \
|
|
../vscode-server-darwin.zip
|
|
|
|
# publish hockeyapp symbols
|
|
node build/azure-pipelines/common/symbols.js "$VSCODE_MIXIN_PASSWORD" "$VSCODE_HOCKEYAPP_TOKEN" x64 "$VSCODE_HOCKEYAPP_ID_MACOS"
|
|
|
|
# upload configuration
|
|
yarn gulp upload-vscode-configuration
|