Update
Test Actions / Builder (push) Failing after 10s

This commit is contained in:
2026-04-06 11:07:12 +03:00
parent ec8aa16893
commit c44d4f0c21
3 changed files with 5 additions and 0 deletions
+5
View File
@@ -7,6 +7,7 @@ import sys
import base64
import json
from pathlib import Path
from executor.visitor import Visitor
from executor.state import State
@@ -82,6 +83,10 @@ def handle_git(args):
result = os.popen(cmd)
print(result.read())
repository_path = Path(INPUT_PATH)
if not repository_path.exist():
repository_path.mkdir(parents=True)
cmd = 'git config --global credential.helper store --file /tmp/.git-credentials'
exec_cmd(cmd)