]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - scripts/release.sh
Live streaming implementation first step
[github/Chocobozzz/PeerTube.git] / scripts / release.sh
... / ...
CommitLineData
1#!/bin/bash
2
3set -eu
4
5shutdown() {
6 # Get our process group id
7 # shellcheck disable=SC2009
8 PGID=$(ps -o pgid= $$ | grep -o "[0-9]*")
9
10 # Kill it in a new new process group
11 setsid kill -- -"$PGID"
12 exit 0
13}
14
15trap "shutdown" SIGINT SIGTERM
16
17if [ -z "$1" ]; then
18 echo "Need version as argument"
19 exit -1
20fi
21
22if [ -z "$GITHUB_TOKEN" ]; then
23 echo "Need GITHUB_TOKEN env set."
24 exit -1
25fi
26
27maintainer_public_key=${MAINTAINER_GPG:-"583A612D890159BE"}
28
29branch=$(git symbolic-ref --short -q HEAD)
30if [ "$branch" != "develop" ] && [[ "$branch" != release/* ]]; then
31 echo "Need to be on develop or release branch."
32 exit -1
33fi
34
35version="v$1"
36github_prerelease_option=""
37if [[ "$version" = *"-alpha."* ]] || [[ "$version" = *"-beta."* ]] || [[ "$version" = *"-rc."* ]]; then
38 echo -e "This is a pre-release.\n"
39 github_prerelease_option="--pre-release"
40fi
41
42directory_name="peertube-$version"
43zip_name="peertube-$version.zip"
44tar_name="peertube-$version.tar.xz"
45
46changelog=$(awk -v version="$version" '/## v/ { printit = $2 == version }; printit;' CHANGELOG.md | grep -v "## $version" | sed '1{/^$/d}')
47
48printf "Changelog will be:\\n\\n%s\\n\\n" "$changelog"
49
50read -p "Are you sure to release? " -n 1 -r
51echo
52if [[ ! $REPLY =~ ^[Yy]$ ]]; then
53 exit 0
54fi
55
56(
57 cd client
58 npm version --no-git-tag-version --no-commit-hooks "$1"
59)
60
61npm version -f --no-git-tag-version --no-commit-hooks "$1"
62
63./scripts/openapi-peertube-version.sh
64
65git commit package.json client/package.json ./support/doc/api/openapi.yaml -m "Bumped to version $version"
66git tag -s -a "$version" -m "$version"
67
68npm run build
69rm -f "./client/dist/en-US/stats.json"
70rm -f "./client/dist/embed-stats.json"
71
72# Creating the archives
73(
74 # local variables
75 directories_to_archive=("$directory_name/CREDITS.md" "$directory_name/FAQ.md" \
76 "$directory_name/LICENSE" "$directory_name/README.md" \
77 "$directory_name/client/dist/" "$directory_name/client/yarn.lock" \
78 "$directory_name/client/package.json" "$directory_name/config" \
79 "$directory_name/dist" "$directory_name/package.json" \
80 "$directory_name/scripts" "$directory_name/support" \
81 "$directory_name/tsconfig.json" "$directory_name/yarn.lock")
82
83 # temporary setup
84 cd ..
85 ln -s "PeerTube" "$directory_name"
86
87 # archive creation + signing
88 zip -r "PeerTube/$zip_name" "${directories_to_archive[@]}"
89 gpg --armor --detach-sign -u "$maintainer_public_key" "PeerTube/$zip_name"
90 XZ_OPT=-e9 tar cfJ "PeerTube/$tar_name" "${directories_to_archive[@]}"
91 gpg --armor --detach-sign -u "$maintainer_public_key" "PeerTube/$tar_name"
92
93 # temporary setup destruction
94 rm "$directory_name"
95)
96
97# Creating the release on GitHub, with the created archives
98(
99 git push origin --tag
100
101 if [ -z "$github_prerelease_option" ]; then
102 github-release release --user chocobozzz --repo peertube --tag "$version" --name "$version" --description "$changelog"
103 else
104 github-release release --user chocobozzz --repo peertube --tag "$version" --name "$version" --description "$changelog" "$github_prerelease_option"
105 fi
106
107 github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$zip_name" --file "$zip_name"
108 github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$zip_name.asc" --file "$zip_name.asc"
109 github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$tar_name" --file "$tar_name"
110 github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$tar_name.asc" --file "$tar_name.asc"
111
112 git push origin "$branch"
113
114 # Only update master if it is not a pre release
115 if [ -z "$github_prerelease_option" ]; then
116 # Update master branch
117 git checkout master
118 git merge "$branch"
119 git push origin master
120 git checkout "$branch"
121 fi
122)