Skip to content

Commit 2bef3fd

Browse files
committed
revert: refactor: migrate to Lagrange.Milky
revert 872db5c
1 parent 3e41a8f commit 2bef3fd

File tree

5 files changed

+325
-158
lines changed

5 files changed

+325
-158
lines changed

.github/workflows/deploy-image.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ on:
66

77
jobs:
88
build-and-push-image:
9-
runs-on: ubuntu-latest
9+
runs-on: ${{ matrix.os }}
10+
strategy:
11+
matrix:
12+
os: [ubuntu-24.04, ubuntu-24.04-arm]
1013

1114
steps:
1215
- name: Log in to the Container registry

bot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import nonebot
2-
from nonebot.adapters.milky import Adapter as NONEBOT_ADAPTER_MILKYAdapter
2+
from nonebot.adapters.onebot.v11 import Adapter as ONEBOT_V11Adapter
33

44
nonebot.init()
55

66
driver = nonebot.get_driver()
7-
driver.register_adapter(NONEBOT_ADAPTER_MILKYAdapter)
7+
driver.register_adapter(ONEBOT_V11Adapter)
88

99

1010
nonebot.load_from_toml("pyproject.toml")

0 commit comments

Comments
 (0)