2020-05-08 10:48:49 +07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
main() {
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
|
2020-05-13 16:06:11 +07:00
|
|
|
# https://github.com/actions/upload-artifact/issues/38
|
2020-05-19 00:48:45 +07:00
|
|
|
tar -xzf release-npm-package/package.tar.gz
|
2020-05-13 16:06:11 +07:00
|
|
|
|
2020-05-28 03:39:17 +07:00
|
|
|
yarn release:standalone
|
|
|
|
yarn test:standalone-release
|
2020-05-08 11:34:20 +07:00
|
|
|
yarn package
|
2020-05-08 10:48:49 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|