fix CI - deploy account for apps-v2

This commit is contained in:
mahee96
2026-06-14 05:14:55 +05:30
parent 7eb0da332d
commit 46eae1cb9f

View File

@@ -286,8 +286,8 @@ def deploy(repo, source_json, release_tag, marketing_version):
if not source_json_path.exists():
raise SystemExit(f"{source_json} missing inside repo")
run("git config user.name 'GitHub Actions'", check=False)
run("git config user.email 'github-actions@github.com'", check=False)
run("git config user.name 'GitHub Actions'", check=False, cwd=repo)
run("git config user.email 'github-actions@github.com'", check=False, cwd=repo)
# ------------------------------------------------------
run("git fetch origin main", check=False, cwd=repo)