mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 04:09:09 +00:00
feat(android): include steps to push updated build.VERSIOn
This commit is contained in:
parent
5512c0aaf9
commit
0060bc501f
1 changed files with 9 additions and 0 deletions
|
@ -34,3 +34,12 @@ cp target/aarch64-linux-android/release/lune build/lune
|
||||||
zip "lune-aarch64-linux-android.zip" build/*
|
zip "lune-aarch64-linux-android.zip" build/*
|
||||||
|
|
||||||
echo $current_ver > ../build.VERSION
|
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
|
||||||
|
|
Loading…
Reference in a new issue