diff --git a/.travis.yml b/.travis.yml index d7fe317..3ba995a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,11 @@ deploy: skip_cleanup: true api_key: $GITHUB_TOKEN file_glob: true - file: ./*.zip + file: + - ./*.zip + - ./*.tar.gz + - vscode/.build/linux/deb/amd64/deb/*.deb + - vscode/.build/linux/rpm/x86_64/*.rpm on: all_branches: true condition: $SHOULD_BUILD = yes diff --git a/build.sh b/build.sh index 79e1403..6ab703f 100755 --- a/build.sh +++ b/build.sh @@ -12,6 +12,8 @@ if [[ "$SHOULD_BUILD" == "yes" ]]; then npx gulp vscode-darwin-min else npx gulp vscode-linux-x64-min + npx gulp vscode-linux-x64-build-deb + npx gulp vscode-linux-x64-build-rpm fi cd .. diff --git a/create_zip.sh b/create_zip.sh index e1559ed..ae18be7 100755 --- a/create_zip.sh +++ b/create_zip.sh @@ -6,7 +6,7 @@ if [[ "$SHOULD_BUILD" == "yes" ]]; then zip -r ../VSCode-darwin-${LATEST_MS_TAG}.zip ./* else cd VSCode-linux-x64 - zip -r ../VSCode-linux-x64-${LATEST_MS_TAG}.zip ./* + tar czf ../VSCode-linux-x64-${LATEST_MS_TAG}.tar.gz . fi cd ..