]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - scripts/release.sh
Add import.video.torrent configuration
[github/Chocobozzz/PeerTube.git] / scripts / release.sh
index 572e6bdca86188974105df74746f7e7b939d909d..4b45c959d521a17d9c681b472bfdd782ca1dc9b8 100755 (executable)
@@ -1,7 +1,115 @@
 #!/bin/bash
 
+set -eu
+
+shutdown() {
+  # Get our process group id
+  # shellcheck disable=SC2009
+  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
+
+if [ -z "$GITHUB_TOKEN" ]; then
+  echo "Need GITHUB_TOKEN env set."
+  exit -1
+fi
+
+branch=$(git symbolic-ref --short -q HEAD)
+if [ "$branch" != "develop" ] && [[ "$branch" != feature/* ]]; then
+  echo "Need to be on develop or release branch."
+  exit -1
+fi
+
+version="v$1"
+github_prerelease_option=""
+if [[ "$version" = *".pre."* ]]; then
+  echo "This is a pre-release."
+  github_prerelease_option="--pre-release"
+fi
+
+directory_name="peertube-$version"
+zip_name="peertube-$version.zip"
+tar_name="peertube-$version.tar.xz"
+
+changelog=$(awk -v version="$version" '/## v/ { printit = $2 == version }; printit;' CHANGELOG.md | grep -v "$version" | sed '1{/^$/d}')
+
+printf "Changelog will be:\\n%s\\n" "$changelog"
+
+read -p "Are you sure to release? " -n 1 -r
+echo
+if [[ ! $REPLY =~ ^[Yy]$ ]]
+then
+  exit 0
+fi
+
+(
+  cd client
+  npm version --no-git-tag-version --no-commit-hooks "$1"
+)
+
+npm version -f --no-git-tag-version --no-commit-hooks "$1"
+
+git commit package.json client/package.json -m "Bumped to version $version"
+git tag -s -a "$version" -m "$version"
+
 npm run build
-npm test
+rm "./client/dist/en_US/stats.json"
+rm "./client/dist/embed-stats.json"
+
+# Creating the archives
+(
+  # local variables
+  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")
+  maintainer_public_key="583A612D890159BE"
+
+  # temporary setup
+  cd ..
+  ln -s "PeerTube" "$directory_name"
+
+  # archive creation + signing
+  zip -r "PeerTube/$zip_name" "${directories_to_archive[@]}"
+  gpg --armor --detach-sign -u "$maintainer_public_key" "PeerTube/$zip_name"
+  XZ_OPT=-e9 tar cfJ "PeerTube/$tar_name" "${directories_to_archive[@]}"
+  gpg --armor --detach-sign -u "$maintainer_public_key" "PeerTube/$tar_name"
+
+  # temporary setup destruction
+  rm "$directory_name"
+)
+
+# Creating the release on GitHub, with the created archives
+(
+  git push origin --tag
+
+  github-release release --user chocobozzz --repo peertube --tag "$version" --name "$version" --description "$changelog" "$github_prerelease_option"
+  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"
+
+  git push origin "$branch"
 
-cd ../ || exit -1
-zip -r PeerTube/peertube.zip PeerTube/{CREDITS.md,node_modules,FAQ.md,LICENSE,README.md,client/dist/,client/yarn.lock,client/package.json,config,dist,package.json,scripts,support,tsconfig.json,yarn.lock}
+  # Only update master if it is not a pre release
+  if [ -z "$github_prerelease_option" ]; then
+      # Update master branch
+      git checkout master
+      git merge "$branch"
+      git push origin master
+      git checkout "$branch"
+  fi
+)