code-server/ci/steps/release-packages.sh

21 lines
439 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
if [[ $OSTYPE == darwin* ]]; then
curl -L https://nodejs.org/dist/v14.4.0/node-v14.4.0-darwin-x64.tar.gz | tar -xz
PATH="$PATH:node-v14.4.0-darwin-x64/bin"
fi
2020-05-13 09:06:11 +00:00
# https://github.com/actions/upload-artifact/issues/38
tar -xzf release-npm-package/package.tar.gz
2020-05-13 09:06:11 +00:00
2020-05-27 20:39:17 +00:00
yarn release:standalone
yarn test:standalone-release
yarn package
}
main "$@"