X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Frelease.sh;h=195f19b45c2a9d540d960807e30653b67879cade;hb=33eb19e5199cc9fa4d73c6675c97508e3e072ef9;hp=ccb93bc44c500abfbbe27b040be2b83c03a3ac14;hpb=225553a021eba517fed81c1ad0c9f5f5eab441e3;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/release.sh b/scripts/release.sh index ccb93bc44..195f19b45 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -43,7 +43,7 @@ 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}') +changelog=$(awk -v version="$version" '/## v/ { printit = $2 == version }; printit;' CHANGELOG.md | grep -v "## $version" | sed '1{/^$/d}') printf "Changelog will be:\\n\\n%s\\n\\n" "$changelog" @@ -60,12 +60,14 @@ fi npm version -f --no-git-tag-version --no-commit-hooks "$1" -git commit package.json client/package.json -m "Bumped to version $version" +./scripts/openapi-peertube-version.sh + +git commit package.json client/package.json ./support/doc/api/openapi.yaml -m "Bumped to version $version" git tag -s -a "$version" -m "$version" -npm run build -rm "./client/dist/en_US/stats.json" -rm "./client/dist/embed-stats.json" +npm run build -- --source-map +rm -f "./client/dist/en-US/stats.json" +rm -f "./client/dist/embed-stats.json" # Creating the archives ( @@ -83,9 +85,9 @@ rm "./client/dist/embed-stats.json" ln -s "PeerTube" "$directory_name" # archive creation + signing - zip -r "PeerTube/$zip_name" "${directories_to_archive[@]}" + zip -9 -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[@]}" + XZ_OPT="-e9 -T0" tar cfJ "PeerTube/$tar_name" "${directories_to_archive[@]}" gpg --armor --detach-sign -u "$maintainer_public_key" "PeerTube/$tar_name" # temporary setup destruction