2017-10-31 18:57:32 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-03-27 10:35:12 +02:00
|
|
|
set -eu
|
|
|
|
|
2018-01-15 11:10:46 +01:00
|
|
|
shutdown() {
|
|
|
|
# Get our process group id
|
2018-03-29 15:11:15 +02:00
|
|
|
# shellcheck disable=SC2009
|
2018-03-27 10:35:12 +02:00
|
|
|
PGID=$(ps -o pgid= $$ | grep -o "[0-9]*")
|
2018-01-15 11:10:46 +01:00
|
|
|
|
|
|
|
# Kill it in a new new process group
|
2018-03-27 10:35:12 +02:00
|
|
|
setsid kill -- -"$PGID"
|
2018-01-15 11:10:46 +01:00
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
|
|
|
trap "shutdown" SIGINT SIGTERM
|
|
|
|
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "Need version as argument"
|
|
|
|
exit -1
|
|
|
|
fi
|
|
|
|
|
2018-03-27 10:35:12 +02:00
|
|
|
if [ -z "$GITHUB_TOKEN" ]; then
|
2018-01-15 13:23:48 +01:00
|
|
|
echo "Need GITHUB_TOKEN env set."
|
|
|
|
exit -1
|
|
|
|
fi
|
|
|
|
|
2018-10-03 11:51:55 +02:00
|
|
|
maintainer_public_key=${MAINTAINER_GPG:-"583A612D890159BE"}
|
|
|
|
|
2018-01-18 10:53:54 +01:00
|
|
|
branch=$(git symbolic-ref --short -q HEAD)
|
2018-10-11 08:47:59 +02:00
|
|
|
if [ "$branch" != "develop" ] && [[ "$branch" != release/* ]]; then
|
2018-08-01 11:13:33 +02:00
|
|
|
echo "Need to be on develop or release branch."
|
2018-01-18 10:53:54 +01:00
|
|
|
exit -1
|
|
|
|
fi
|
|
|
|
|
2018-01-15 13:23:48 +01:00
|
|
|
version="v$1"
|
2018-07-25 17:05:15 +02:00
|
|
|
github_prerelease_option=""
|
2018-10-17 08:42:54 +02:00
|
|
|
if [[ "$version" = *"-alpha."* ]] || [[ "$version" = *"-beta."* ]] || [[ "$version" = *"-rc."* ]]; then
|
|
|
|
echo -e "This is a pre-release.\n"
|
2018-07-25 17:05:15 +02:00
|
|
|
github_prerelease_option="--pre-release"
|
|
|
|
fi
|
|
|
|
|
2018-01-15 13:23:48 +01:00
|
|
|
directory_name="peertube-$version"
|
|
|
|
zip_name="peertube-$version.zip"
|
2018-03-29 15:11:15 +02:00
|
|
|
tar_name="peertube-$version.tar.xz"
|
2018-01-15 13:23:48 +01:00
|
|
|
|
2018-12-03 10:35:50 +01:00
|
|
|
changelog=$(awk -v version="$version" '/## v/ { printit = $2 == version }; printit;' CHANGELOG.md | grep -v "## $version" | sed '1{/^$/d}')
|
2018-02-15 15:59:48 +01:00
|
|
|
|
2018-10-17 08:42:54 +02:00
|
|
|
printf "Changelog will be:\\n\\n%s\\n\\n" "$changelog"
|
2018-02-15 15:59:48 +01:00
|
|
|
|
|
|
|
read -p "Are you sure to release? " -n 1 -r
|
|
|
|
echo
|
2018-08-21 09:29:13 +02:00
|
|
|
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
|
2018-03-27 10:35:12 +02:00
|
|
|
exit 0
|
2018-02-15 15:59:48 +01:00
|
|
|
fi
|
|
|
|
|
2018-05-07 12:04:06 +02:00
|
|
|
(
|
2018-03-29 15:11:15 +02:00
|
|
|
cd client
|
2018-03-27 10:35:12 +02:00
|
|
|
npm version --no-git-tag-version --no-commit-hooks "$1"
|
|
|
|
)
|
2018-01-15 11:10:46 +01:00
|
|
|
|
2018-03-27 10:35:12 +02:00
|
|
|
npm version -f --no-git-tag-version --no-commit-hooks "$1"
|
2018-01-15 11:10:46 +01:00
|
|
|
|
2018-11-22 15:04:14 +01:00
|
|
|
./scripts/openapi-peertube-version.sh
|
|
|
|
|
|
|
|
git commit package.json client/package.json ./support/doc/api/openapi.yaml -m "Bumped to version $version"
|
2018-01-15 13:23:48 +01:00
|
|
|
git tag -s -a "$version" -m "$version"
|
2018-01-15 11:10:46 +01:00
|
|
|
|
2021-02-11 14:02:54 +01:00
|
|
|
npm run build -- --source-map
|
2020-06-11 09:29:33 +02:00
|
|
|
rm -f "./client/dist/en-US/stats.json"
|
2019-08-13 17:33:49 +02:00
|
|
|
rm -f "./client/dist/embed-stats.json"
|
2017-10-31 18:57:32 +01:00
|
|
|
|
2018-03-29 15:11:15 +02:00
|
|
|
# Creating the archives
|
|
|
|
(
|
2018-03-30 13:59:26 +02:00
|
|
|
# local variables
|
2018-05-07 12:04:06 +02:00
|
|
|
directories_to_archive=("$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")
|
2018-03-30 13:59:26 +02:00
|
|
|
|
|
|
|
# temporary setup
|
2018-03-29 15:11:15 +02:00
|
|
|
cd ..
|
|
|
|
ln -s "PeerTube" "$directory_name"
|
|
|
|
|
2018-03-30 13:59:26 +02:00
|
|
|
# archive creation + signing
|
2021-02-11 14:02:54 +01:00
|
|
|
zip -9 -r "PeerTube/$zip_name" "${directories_to_archive[@]}"
|
2018-05-07 12:04:06 +02:00
|
|
|
gpg --armor --detach-sign -u "$maintainer_public_key" "PeerTube/$zip_name"
|
2021-01-07 09:04:10 +01:00
|
|
|
XZ_OPT="-e9 -T0" tar cfJ "PeerTube/$tar_name" "${directories_to_archive[@]}"
|
2018-05-07 12:04:06 +02:00
|
|
|
gpg --armor --detach-sign -u "$maintainer_public_key" "PeerTube/$tar_name"
|
2018-03-30 13:59:26 +02:00
|
|
|
|
|
|
|
# temporary setup destruction
|
2018-03-29 15:11:15 +02:00
|
|
|
rm "$directory_name"
|
|
|
|
)
|
2018-01-15 13:23:48 +01:00
|
|
|
|
2018-03-29 15:11:15 +02:00
|
|
|
# Creating the release on GitHub, with the created archives
|
|
|
|
(
|
|
|
|
git push origin --tag
|
2018-01-18 10:53:54 +01:00
|
|
|
|
2018-08-21 09:29:13 +02:00
|
|
|
if [ -z "$github_prerelease_option" ]; then
|
|
|
|
github-release release --user chocobozzz --repo peertube --tag "$version" --name "$version" --description "$changelog"
|
|
|
|
else
|
|
|
|
github-release release --user chocobozzz --repo peertube --tag "$version" --name "$version" --description "$changelog" "$github_prerelease_option"
|
|
|
|
fi
|
|
|
|
|
2018-03-29 15:11:15 +02:00
|
|
|
github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$zip_name" --file "$zip_name"
|
|
|
|
github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$zip_name.asc" --file "$zip_name.asc"
|
|
|
|
github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$tar_name" --file "$tar_name"
|
|
|
|
github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$tar_name.asc" --file "$tar_name.asc"
|
2018-01-19 08:44:30 +01:00
|
|
|
|
2018-08-01 11:13:33 +02:00
|
|
|
git push origin "$branch"
|
2018-01-18 10:53:54 +01:00
|
|
|
|
2018-07-25 17:05:15 +02:00
|
|
|
# Only update master if it is not a pre release
|
|
|
|
if [ -z "$github_prerelease_option" ]; then
|
|
|
|
# Update master branch
|
|
|
|
git checkout master
|
2018-08-01 11:13:33 +02:00
|
|
|
git merge "$branch"
|
2018-07-25 17:05:15 +02:00
|
|
|
git push origin master
|
2018-08-01 11:13:33 +02:00
|
|
|
git checkout "$branch"
|
2018-07-25 17:05:15 +02:00
|
|
|
fi
|
2018-03-29 15:11:15 +02:00
|
|
|
)
|