Merge remote-tracking branch 'mntm/dev' into kiisu-mntm

This commit is contained in:
WillyJL
2025-11-30 01:55:32 +01:00
353 changed files with 16601 additions and 1468 deletions
+1
View File
@@ -310,6 +310,7 @@ def _validate_app_imports(target, source, env):
"js_value_parse",
"js_event_loop_get_loop",
"js_gui_make_view_factory",
"js_gui_font_declaration",
),
# metroflip_api_table
(
+5
View File
@@ -9,6 +9,7 @@ import re
import shlex
import ssl
import string
import urllib.parse
import urllib.request
@@ -63,6 +64,7 @@ def get_details(event, args):
ref = event["ref"]
data["commit_sha"] = data["commit_hash"][:8]
data["branch_name"] = re.sub("refs/\w+/", "", ref)
data["branch_name_urlencoded"] = urllib.parse.quote_plus(data["branch_name"])
data["suffix"] = (
"mntm-"
+ data["branch_name"].removeprefix("mntm-").replace("/", "-")
@@ -94,6 +96,9 @@ def add_envs(data, gh_env_file, gh_out_file, args):
add_env("DIST_SUFFIX", data["suffix"], gh_env_file)
add_env("WORKFLOW_BRANCH_OR_TAG", data["branch_name"], gh_env_file)
add_set_output_var("branch_name", data["branch_name"], gh_out_file)
add_set_output_var(
"branch_name_urlencoded", data["branch_name_urlencoded"], gh_out_file
)
add_set_output_var("commit_sha", data["commit_sha"], gh_out_file)
add_set_output_var("default_target", os.getenv("DEFAULT_TARGET"), gh_out_file)
add_set_output_var("suffix", data["suffix"], gh_out_file)