2022-11-09 15:58:06 +01:00
|
|
|
#!/usr/bin/env bash
|
2019-12-03 00:58:50 +01:00
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
BRANCH=$(git rev-parse --abbrev-ref HEAD)
|
2022-07-29 15:30:16 +02:00
|
|
|
DIST_VERSION=$(git describe --abbrev=0 --tags)
|
2019-12-03 00:58:50 +01:00
|
|
|
|
2022-07-29 15:30:16 +02:00
|
|
|
DIR=$(dirname "$0")
|
|
|
|
|
2022-09-05 10:35:16 +02:00
|
|
|
# If the branch comes out as HEAD then we're probably checked out to a tag, so if the thing is *not*
|
|
|
|
# coming out as HEAD then we're on a branch. When we're on a branch, we want to resolve ourselves to
|
|
|
|
# a few SHAs rather than a version.
|
|
|
|
if [[ $BRANCH != HEAD && ! $BRANCH =~ heads/v.+ ]]
|
2019-12-03 00:58:50 +01:00
|
|
|
then
|
2022-07-29 15:30:16 +02:00
|
|
|
DIST_VERSION=$("$DIR"/get-version-from-git.sh)
|
2019-12-03 00:58:50 +01:00
|
|
|
fi
|
|
|
|
|
2022-07-29 15:30:16 +02:00
|
|
|
DIST_VERSION=$("$DIR"/normalize-version.sh "$DIST_VERSION")
|
2021-12-07 05:11:01 +01:00
|
|
|
VERSION=$DIST_VERSION yarn build
|
2022-07-29 15:30:16 +02:00
|
|
|
echo "$DIST_VERSION" > /src/webapp/version
|