mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 08:27:17 +01:00
15 lines
259 B
Bash
Executable file
15 lines
259 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
# https://github.com/actions/upload-artifact/issues/38
|
|
tar -xzf release-npm-package/package.tar.gz
|
|
|
|
yarn release:binary
|
|
yarn test:binary-release
|
|
yarn package
|
|
}
|
|
|
|
main "$@"
|