diff --git a/scripts/build-apk.sh b/scripts/build-apk.sh
index 9a2fb853ec0018d8cb13100077265f8fd1048677..3a87c36666bf23df62a5435495b9ea42e3c9ebce 100755
--- a/scripts/build-apk.sh
+++ b/scripts/build-apk.sh
@@ -3,6 +3,8 @@
 
 fVersion=$(grep "version: " pubspec.yaml | awk '{ print $2 }')
 
+withPush=$1
+
 APPNAME="gecko"
 VERSION=$(awk -F '+' '{ print $1 }' <<<$fVersion)
 BUILD=$(awk -F '+' '{ print $2 }' <<<$fVersion)
@@ -35,4 +37,6 @@ fi
 appPath="$DL/${APPNAME}-${VERSION}+${BUILD}.apk"
 mv build/app/outputs/flutter-apk/$ori_app "$appPath" && echo "$appPath" || exit 1
 
+[[ $withPush == "withPush" ]] && /home/poka/scripts/link/pushGecko $VERSION
+
 exit 0