From 85052422df89f7ef1fd01ea241a3f520e06cc2bc Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Thu, 9 Oct 2025 08:36:12 +0200 Subject: [PATCH] Add script to push binaries to orphan branch --- push-apks.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 push-apks.sh diff --git a/push-apks.sh b/push-apks.sh new file mode 100755 index 000000000..36615c3b0 --- /dev/null +++ b/push-apks.sh @@ -0,0 +1,8 @@ +#! /bin/sh + +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