ci: fix cloudflare r2 ci
This commit is contained in:
@@ -52,6 +52,7 @@ jobs:
|
|||||||
rclone copy dashboard/$R2_OBJECT_NAME r2:$R2_BUCKET_NAME --progress
|
rclone copy dashboard/$R2_OBJECT_NAME r2:$R2_BUCKET_NAME --progress
|
||||||
mv dashboard/$R2_OBJECT_NAME dashboard/astrbot-webui-${VERSION_TAG}.zip
|
mv dashboard/$R2_OBJECT_NAME dashboard/astrbot-webui-${VERSION_TAG}.zip
|
||||||
rclone copy dashboard/astrbot-webui-${VERSION_TAG}.zip r2:$R2_BUCKET_NAME --progress
|
rclone copy dashboard/astrbot-webui-${VERSION_TAG}.zip r2:$R2_BUCKET_NAME --progress
|
||||||
|
mv dashboard/astrbot-webui-${VERSION_TAG}.zip dashboard/dist.zip
|
||||||
|
|
||||||
- name: Fetch Changelog
|
- name: Fetch Changelog
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -7,4 +7,5 @@
|
|||||||
5. 优化:WebUI 账户修改页面的设计逻辑
|
5. 优化:WebUI 账户修改页面的设计逻辑
|
||||||
6. 优化:插件更新后自动刷新插件列表
|
6. 优化:插件更新后自动刷新插件列表
|
||||||
7. 新增:支持下载插件的指定分支
|
7. 新增:支持下载插件的指定分支
|
||||||
8. 其他更新、优化及修复
|
8. 修复:WeChatPadPro 群聊模式下 @ 不回复等问题
|
||||||
|
9. 其他更新、优化及修复
|
||||||
|
|||||||
@@ -92,14 +92,12 @@ class Waiter(Star):
|
|||||||
async def empty_mention_waiter(
|
async def empty_mention_waiter(
|
||||||
controller: SessionController, event: AstrMessageEvent
|
controller: SessionController, event: AstrMessageEvent
|
||||||
):
|
):
|
||||||
logger.info("empty_mention_waiter")
|
|
||||||
event.message_obj.message.insert(
|
event.message_obj.message.insert(
|
||||||
0, Comp.At(qq=event.get_self_id(), name=event.get_self_id())
|
0, Comp.At(qq=event.get_self_id(), name=event.get_self_id())
|
||||||
)
|
)
|
||||||
new_event = copy.copy(event)
|
new_event = copy.copy(event)
|
||||||
self.context.get_event_queue().put_nowait(
|
# 重新推入事件队列
|
||||||
new_event
|
self.context.get_event_queue().put_nowait(new_event)
|
||||||
) # 重新推入事件队列
|
|
||||||
event.stop_event()
|
event.stop_event()
|
||||||
controller.stop()
|
controller.stop()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user