feat(android): include steps to push updated build.VERSIOn

This commit is contained in:
Erica Marigold 2023-09-01 14:52:00 +05:30 committed by GitHub
parent 5512c0aaf9
commit 0060bc501f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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