Added proper automation for playstore builds.

This commit is contained in:
Koen J
2026-02-19 11:13:27 +01:00
parent fa1954ceef
commit 2bcfbf89d3
6 changed files with 246 additions and 64 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
VENV_DIR="${VENV_DIR:-.venv-playstore}"
if [[ ! -d "$VENV_DIR" ]]; then
python3 -m venv "$VENV_DIR"
fi
source "$VENV_DIR/bin/activate"
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade google-api-python-client google-auth google-auth-httplib2