mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
b0abbfacd4
* Centralise version scripts and fix Docker version * Refactor generation of a git-hash-based version into get-version-from-git * Refactor normalization of versions (stripping leading v) into normalize-version.sh * Call get-version-from-git from ci_package.sh, call normalize-version from package.sh * Refactor docker-write-version.sh into docker-package.sh, which both writes the version file and invokes yarn build passing VERSION * Normalize the version received from the server
31 lines
693 B
Bash
Executable File
31 lines
693 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ -n "$DIST_VERSION" ]; then
|
|
version=$DIST_VERSION
|
|
else
|
|
version=`git describe --dirty --tags || echo unknown`
|
|
fi
|
|
|
|
yarn clean
|
|
VERSION=$version yarn build
|
|
|
|
# include the sample config in the tarball. Arguably this should be done by
|
|
# `yarn build`, but it's just too painful.
|
|
cp config.sample.json webapp/
|
|
|
|
mkdir -p dist
|
|
cp -r webapp element-$version
|
|
|
|
# Just in case you have a local config, remove it before packaging
|
|
rm element-$version/config.json || true
|
|
|
|
$(dirname $0)/normalize-version.sh ${version} > element-$version/version
|
|
|
|
tar chvzf dist/element-$version.tar.gz element-$version
|
|
rm -r element-$version
|
|
|
|
echo
|
|
echo "Packaged dist/element-$version.tar.gz"
|