feat: 更新了异步上下文压缩插件版本,并优化了发布工作流以直接上传插件文件,同时排除了新的插件模板文件。
This commit is contained in:
@@ -97,7 +97,12 @@ def scan_plugins_directory(plugins_dir: str) -> list[dict[str, Any]]:
|
||||
for file in files:
|
||||
if file.endswith(".py") and not file.startswith("__"):
|
||||
# Skip specific files that should not trigger release
|
||||
if file in ["gemini_manifold.py", "gemini_manifold_companion.py"]:
|
||||
if file in [
|
||||
"gemini_manifold.py",
|
||||
"gemini_manifold_companion.py",
|
||||
"ACTION_PLUGIN_TEMPLATE.py",
|
||||
"ACTION_PLUGIN_TEMPLATE_CN.py",
|
||||
]:
|
||||
continue
|
||||
|
||||
file_path = os.path.join(root, file)
|
||||
|
||||
Reference in New Issue
Block a user