diff --git a/update-repo.sh b/hosting/update-repo.sh similarity index 85% rename from update-repo.sh rename to hosting/update-repo.sh index c66d0a56b..aca83345c 100755 --- a/update-repo.sh +++ b/hosting/update-repo.sh @@ -1,5 +1,6 @@ # !/bin/sh +git pull cd fdroid fdroid update -c fdroid update diff --git a/push-updates.sh b/push-updates.sh deleted file mode 100755 index 2beeffb4a..000000000 --- a/push-updates.sh +++ /dev/null @@ -1,14 +0,0 @@ -#! /bin/sh - -git checkout master -git add . -git commit -m "Update from CI" -git push origin master - -git branch -D binaries -git checkout --orphan binaries -git add -f fdroid/repo/*.apk -git commit -m "Add latest apks" -git push --force origin binaries -git checkout master -git branch -D binaries