code-server/ci/steps/release.sh
Asher 164e8ac0a1
Move archive workaround into ci.yaml
This lets us use the scripts locally without the extra steps.
2021-02-11 14:41:52 -06:00

14 lines
164 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
yarn --frozen-lockfile
yarn build
yarn build:vscode
yarn release
}
main "$@"