15 lines
288 B
Bash
Executable File
15 lines
288 B
Bash
Executable File
#! /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
|