2017-10-31 13:57:32 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-01-15 05:10:46 -05:00
|
|
|
shutdown() {
|
|
|
|
# Get our process group id
|
|
|
|
PGID=$(ps -o pgid= $$ | grep -o [0-9]*)
|
|
|
|
|
|
|
|
# Kill it in a new new process group
|
|
|
|
setsid kill -- -$PGID
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
|
|
|
trap "shutdown" SIGINT SIGTERM
|
|
|
|
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "Need version as argument"
|
|
|
|
exit -1
|
|
|
|
fi
|
|
|
|
|
2018-01-15 07:23:48 -05:00
|
|
|
if [ -z $GITHUB_TOKEN ]; then
|
|
|
|
echo "Need GITHUB_TOKEN env set."
|
|
|
|
exit -1
|
|
|
|
fi
|
|
|
|
|
|
|
|
version="v$1"
|
|
|
|
directory_name="peertube-$version"
|
|
|
|
zip_name="peertube-$version.zip"
|
|
|
|
|
2018-01-15 05:10:46 -05:00
|
|
|
cd ./client || exit -1
|
|
|
|
npm version --no-git-tag-version --no-commit-hooks $1 || exit -1
|
|
|
|
|
|
|
|
cd ../ || exit -1
|
|
|
|
npm version -f --no-git-tag-version --no-commit-hooks $1 || exit -1
|
|
|
|
|
2018-01-15 07:23:48 -05:00
|
|
|
git commit package.json client/package.json -m "Bumped to version $version" || exit -1
|
|
|
|
git tag -s -a "$version" -m "$version"
|
2018-01-15 05:10:46 -05:00
|
|
|
|
|
|
|
npm run build || exit -1
|
2017-10-31 13:57:32 -04:00
|
|
|
|
|
|
|
cd ../ || exit -1
|
2018-01-15 05:51:51 -05:00
|
|
|
|
2018-01-15 07:23:48 -05:00
|
|
|
ln -s "PeerTube" "$directory_name" || exit -1
|
|
|
|
zip -r "PeerTube/$zip_name" "$directory_name/CREDITS.md" "$directory_name/FAQ.md" \
|
|
|
|
"$directory_name/LICENSE" "$directory_name/README.md" \
|
|
|
|
"$directory_name/client/dist/" "$directory_name/client/yarn.lock" \
|
|
|
|
"$directory_name/client/package.json" "$directory_name/config" \
|
|
|
|
"$directory_name/dist" "$directory_name/package.json" \
|
|
|
|
"$directory_name/scripts" "$directory_name/support" \
|
|
|
|
"$directory_name/tsconfig.json" "$directory_name/yarn.lock" \
|
|
|
|
|| exit -1
|
|
|
|
rm "$directory_name" || exit -1
|
|
|
|
|
|
|
|
cd "PeerTube" || exit -1
|
|
|
|
|
|
|
|
git push origin --tag
|
|
|
|
|
|
|
|
github-release release --user chocobozzz --repo peertube --tag "$version" --name "$version"
|
2018-01-15 10:47:53 -05:00
|
|
|
github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$zip_name" --file "$zip_name"
|