Files
element-web/scripts/docker-package.sh
T

22 lines
765 B
Bash
Raw Normal View History

2020-03-09 19:57:52 -06:00
#!/bin/sh
set -ex
2019-12-24 18:34:40 -07:00
TAG=$(git describe --tags)
BRANCH=$(git rev-parse --abbrev-ref HEAD)
DIST_VERSION=$TAG
# 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.
2019-12-24 18:34:40 -07:00
# Docker Hub doesn't always check out the tag and sometimes checks out the branch, so we should look
# for an appropriately tagged branch as well (heads/v1.2.3).
2020-03-19 21:00:36 +00:00
if [[ $BRANCH != HEAD && ! $BRANCH =~ heads/v.+ ]]
then
2021-12-07 15:11:01 +11:00
DIST_VERSION=`$(dirname $0)/get-version-from-git.sh`
fi
2021-12-07 15:11:01 +11:00
DIST_VERSION=`$(dirname $0)/normalize-version.sh ${DIST_VERSION}`
VERSION=$DIST_VERSION yarn build
echo $DIST_VERSION > /src/webapp/version