From 0060bc501fedf0577d3936c8436681e5896b7938 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Fri, 1 Sep 2023 14:52:00 +0530 Subject: [PATCH] feat(android): include steps to push updated build.VERSIOn --- package/android/build.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/package/android/build.sh b/package/android/build.sh index 7fef598..c792516 100644 --- a/package/android/build.sh +++ b/package/android/build.sh @@ -34,3 +34,12 @@ cp target/aarch64-linux-android/release/lune build/lune zip "lune-aarch64-linux-android.zip" build/* echo $current_ver > ../build.VERSION + +cd .. +git add build.VERSION + +git diff +git config --global user.email "hi@devcomp.xyz" +git config --global user.name "CI" +git diff --quiet || (git add -u && git commit -m "chore: update build.VERSION") +git push