2018-05-09 13:54:13 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eu -o pipefail
|
|
|
|
|
2018-10-17 12:19:15 -04:00
|
|
|
readonly relativeOutputPath=$1
|
|
|
|
readonly prNumber=$2
|
|
|
|
readonly prLastSha=$3
|
|
|
|
readonly inputDir=dist/
|
|
|
|
readonly outputFile=$PROJECT_ROOT/$relativeOutputPath
|
|
|
|
readonly deployedUrl=https://pr${prNumber}-${prLastSha:0:7}.ngbuilds.io/
|
2018-09-20 04:21:53 -04:00
|
|
|
|
2018-05-09 13:54:13 -04:00
|
|
|
(
|
|
|
|
cd $PROJECT_ROOT/aio
|
|
|
|
|
|
|
|
# Build and store the app
|
|
|
|
yarn build
|
2018-09-20 04:21:53 -04:00
|
|
|
|
2018-08-30 12:32:32 -04:00
|
|
|
# Set deployedUrl as parameter in the opensearch description
|
|
|
|
# deployedUrl must end with /
|
|
|
|
yarn set-opensearch-url $deployedUrl
|
|
|
|
|
2018-10-17 12:19:15 -04:00
|
|
|
mkdir -p "`dirname $outputFile`"
|
|
|
|
tar --create --gzip --directory "$inputDir" --file "$outputFile" .
|
2018-05-09 13:54:13 -04:00
|
|
|
)
|