mirror of
https://github.com/coder/code-server.git
synced 2026-05-13 15:57:27 +02:00
17 lines
242 B
Bash
17 lines
242 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
yarn release:static
|
|
./ci/build/test-static-release.sh
|
|
./ci/build/archive-static-release.sh
|
|
|
|
if [[ $OSTYPE == linux* ]]; then
|
|
yarn pkg
|
|
fi
|
|
}
|
|
|
|
main "$@"
|