mirror of
https://github.com/coder/code-server.git
synced 2024-11-23 20:52:38 +03:00
14 lines
233 B
Bash
Executable File
14 lines
233 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
source ./ci/lib.sh
|
|
|
|
./ci/container/exec.sh ./ci/steps/static-release.sh
|
|
./ci/container/exec.sh yarn pkg
|
|
./ci/release-container/push.sh
|
|
}
|
|
|
|
main "$@"
|