We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e41a8f commit 2bef3fdCopy full SHA for 2bef3fd
.github/workflows/deploy-image.yml
@@ -6,7 +6,10 @@ on:
6
7
jobs:
8
build-and-push-image:
9
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
10
+ strategy:
11
+ matrix:
12
+ os: [ubuntu-24.04, ubuntu-24.04-arm]
13
14
steps:
15
- name: Log in to the Container registry
bot.py
@@ -1,10 +1,10 @@
1
import nonebot
2
-from nonebot.adapters.milky import Adapter as NONEBOT_ADAPTER_MILKYAdapter
+from nonebot.adapters.onebot.v11 import Adapter as ONEBOT_V11Adapter
3
4
nonebot.init()
5
driver = nonebot.get_driver()
-driver.register_adapter(NONEBOT_ADAPTER_MILKYAdapter)
+driver.register_adapter(ONEBOT_V11Adapter)
nonebot.load_from_toml("pyproject.toml")
0 commit comments