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

16 lines
259 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
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
yarn release:binary
yarn test:binary-release
yarn package
}
main "$@"