mirror of
https://github.com/cdr/code-server.git
synced 2025-12-27 19:05:32 +01:00
15 lines
267 B
Bash
Executable file
15 lines
267 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:standalone
|
|
yarn test:standalone-release
|
|
yarn package
|
|
}
|
|
|
|
main "$@"
|