This commit is contained in:
Evann Regnault 2023-06-26 16:19:07 +02:00
parent e2fe22e333
commit 9cc1ebdb30
2 changed files with 1 additions and 1 deletions

View file

@ -39,7 +39,6 @@ jobs:
uses: docker/build-push-action@v4 uses: docker/build-push-action@v4
with: with:
context: . context: .
platforms: linux/amd64
push: true push: true
tags: | tags: |
${{ env.DOCKER_REGISTRY }}/obsessed-yanqing:latest ${{ env.DOCKER_REGISTRY }}/obsessed-yanqing:latest

View file

@ -21,6 +21,7 @@ async fn main() {
Box::pin(async move { Box::pin(async move {
ctx.set_activity(Activity::listening("/character")).await; ctx.set_activity(Activity::listening("/character")).await;
poise::builtins::register_globally(ctx, &framework.options().commands).await?; poise::builtins::register_globally(ctx, &framework.options().commands).await?;
println!("Bot Started");
Ok(Data {}) Ok(Data {})
}) })
}); });