Add script to push binaries to orphan branch

This commit is contained in:
2025-10-09 08:36:12 +02:00
parent b539901292
commit 85052422df
Executable
+8
View File
@@ -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