deploy on gitea workflow #3

Merged
vbevdev merged 55 commits from experiment/runner into main 2026-07-04 16:20:41 +00:00
Showing only changes of commit 457bf8e586 - Show all commits
@@ -26,11 +26,12 @@ runs:
output_file = os.environ.get("ESCAPED_MESSAGE")
escape_chars = ["-", ".", "!"]
escaped_text = raw_text
for char in escape_chars:
escaped_text = escaped_text.replace(char, f"\\{char}")
escaped_text = escaped_text.replace("`", "\\`")
with open(output_file, "a", encoding="utf-8") as f:
f.write("result<<EOF\n")
f.write(f"{escaped_text}\n")