aboutsummaryrefslogtreecommitdiff
path: root/devscripts/release.sh
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2016-06-04 22:55:21 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2016-06-04 22:55:21 +0200
commitc93b4eacebe62e3993da790cbea8fbf62e161f07 (patch)
tree1b6a356fa6d0fa38f76a466012fc630096f94f9b /devscripts/release.sh
parent71b9cb3107e156c7f17ec4cdf1d09421cb4dd4b1 (diff)
parent633b444fd29aa9d8b3ba722285ae2475ae66595f (diff)
git pushMerge branch 'master' of github.com:rg3/youtube-dl
Diffstat (limited to 'devscripts/release.sh')
-rwxr-xr-xdevscripts/release.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/devscripts/release.sh b/devscripts/release.sh
index 1a7b1e054..87e8eda50 100755
--- a/devscripts/release.sh
+++ b/devscripts/release.sh
@@ -95,17 +95,16 @@ RELEASE_FILES="youtube-dl youtube-dl.exe youtube-dl-$version.tar.gz"
(cd build/$version/ && sha256sum $RELEASE_FILES > SHA2-256SUMS)
(cd build/$version/ && sha512sum $RELEASE_FILES > SHA2-512SUMS)
-/bin/echo -e "\n### Signing and uploading the new binaries to yt-dl.org ..."
+/bin/echo -e "\n### Signing and uploading the new binaries to GitHub..."
for f in $RELEASE_FILES; do gpg --passphrase-repeat 5 --detach-sig "build/$version/$f"; done
-echo 'TODO: upload on GitHub'
-exit 1
+ROOT=$(pwd)
+python devscripts/create-github-release.py $version "$ROOT/build/$version"
ssh ytdl@yt-dl.org "sh html/update_latest.sh $version"
/bin/echo -e "\n### Now switching to gh-pages..."
git clone --branch gh-pages --single-branch . build/gh-pages
-ROOT=$(pwd)
(
set -e
ORIGIN_URL=$(git config --get remote.origin.url)