bc453b5f0d
The architecture specific jobs pull it in and then build releases. Much faster!
15 lines
160 B
Bash
Executable File
15 lines
160 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
yarn
|
|
yarn vscode
|
|
yarn build
|
|
yarn build:vscode
|
|
yarn release
|
|
}
|
|
|
|
main "$@"
|