From 0d758adb2d23a3c17794272eba94ab3ca35c16b5 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Fri, 12 Jun 2026 09:19:58 +0200 Subject: [PATCH] Move update scripts into hosting directory --- update-repo.sh => hosting/update-repo.sh | 1 + push-updates.sh | 14 -------------- 2 files changed, 1 insertion(+), 14 deletions(-) rename update-repo.sh => hosting/update-repo.sh (85%) delete mode 100755 push-updates.sh 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