Update
Some checks failed
Test Actions / Builder (push) Failing after 8s

This commit is contained in:
2025-03-30 20:24:48 +03:00
parent f17394071b
commit 06674111b4

View File

@@ -17,6 +17,11 @@ def escape(text):
cmd = 'git init'
os.popen(cmd)
print(result.read())
cmd = 'ls -la'
os.popen(cmd)
print(result.read())
sample_string = "x-access-token:" + ACTIONS_RUNTIME_TOKEN
sample_string = "x-access-token:" + INPUT_TOKEN
@@ -50,16 +55,16 @@ cmd = 'ls -la'
os.popen(cmd)
print(result.read())
# cmd = 'git config list --local'
# print(cmd)
# result = os.popen(cmd)
# print(result.read())
cmd = 'git config list --global'
cmd = 'git config list --local'
print(cmd)
result = os.popen(cmd)
print(result.read())
# cmd = 'git config list --global'
# print(cmd)
# result = os.popen(cmd)
# print(result.read())
# cmd = 'git clone ' + \
# GITHUB_SERVER_URL + '/' + \
# GITHUB_REPOSITORY + ' ' + os.getcwd()