mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
c607b1bc89
instead of the actual electron package. With no way to ignore directories. I'd like to think of this as temporary, until I get to rip apart riot-web and riot-electron Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
26 lines
480 B
Bash
Executable File
26 lines
480 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Script to perform a release of vector-web.
|
|
#
|
|
# Requires github-changelog-generator; to install, do
|
|
# pip install git+https://github.com/matrix-org/github-changelog-generator.git
|
|
|
|
set -e
|
|
|
|
cd `dirname $0`
|
|
|
|
|
|
# bump Electron's package.json first
|
|
release="${1#v}"
|
|
tag="v${release}"
|
|
echo "electron npm version"
|
|
|
|
cd electron_app
|
|
npm version --no-git-tag-version "$release"
|
|
git commit package.json -m "$tag"
|
|
|
|
|
|
cd ..
|
|
|
|
exec ./node_modules/matrix-js-sdk/release.sh -z "$@"
|