1
0
mirror of https://git.tuxpa.in/a/code-server.git synced 2025-02-06 21:18:45 +00:00
code-server-2/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 "$@"