mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 01:39:37 +02:00
Don't show videos of remote instance after unfollow
This commit is contained in:
parent
1174a8479a
commit
f05a1c30c1
38 changed files with 402 additions and 211 deletions
|
@ -21,6 +21,12 @@ if [ -z $GITHUB_TOKEN ]; then
|
|||
exit -1
|
||||
fi
|
||||
|
||||
branch=$(git symbolic-ref --short -q HEAD)
|
||||
if [ "$branch" != "develop" ]; then
|
||||
echo "Need to be on develop branch."
|
||||
exit -1
|
||||
fi
|
||||
|
||||
version="v$1"
|
||||
directory_name="peertube-$version"
|
||||
zip_name="peertube-$version.zip"
|
||||
|
@ -56,3 +62,10 @@ git push origin --tag
|
|||
|
||||
github-release release --user chocobozzz --repo peertube --tag "$version" --name "$version"
|
||||
github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$zip_name" --file "$zip_name"
|
||||
|
||||
# Update master branch
|
||||
git checkout master
|
||||
git rebase develop
|
||||
git git push origin master
|
||||
git checkout develop
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue