platform: Unify client versions

This commit is contained in:
世界 2024-02-16 13:28:58 +08:00
parent 5583e01c99
commit 80d1aebcb7
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
7 changed files with 57 additions and 11 deletions

14
.github/update_clients.sh vendored Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
PROJECTS=$(dirname "$0")/../..
function updateClient() {
pushd clients/$1
git fetch
git reset FETCH_HEAD --hard
popd
git add clients/$1
}
updateClient "apple"
updateClient "android"