bc453b5f0d
The architecture specific jobs pull it in and then build releases. Much faster!
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 "$@"
|