This commit is contained in:
2025-03-30 04:51:33 +03:00
parent 57fb66275a
commit 2c5d53f089

View File

@@ -14,8 +14,8 @@ GITHUB_REPOSITORY = os.getenv('GITHUB_REPOSITORY')
def escape(text):
return '"' + text + '"'
sample_string = "x-access-token:" + INPUT_TOKEN
sample_string = "x-access-token:" + ACTIONS_RUNTIME_TOKEN
sample_string = "x-access-token:" + INPUT_TOKEN
sample_string_bytes = sample_string.encode("utf-8")
base64_bytes = base64.b64encode(sample_string_bytes)