From 7b83f5dee0dcdb492c82053db333cd70cc8e642e Mon Sep 17 00:00:00 2001 From: Luke R Date: Thu, 2 May 2024 13:15:35 -0700 Subject: [PATCH] Set push to true on workflow --- .gitea/workflows/build-and-push.yaml | 2 +- app/cogs/animal_functions.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build-and-push.yaml b/.gitea/workflows/build-and-push.yaml index 37a234a6..d6da9147 100755 --- a/.gitea/workflows/build-and-push.yaml +++ b/.gitea/workflows/build-and-push.yaml @@ -57,7 +57,7 @@ jobs: uses: docker/build-push-action@v5 with: context: . - push: false + push: true tags: | dragon-bot/dale-bot:latest dragon-bot/dale-bot:${{ gitea.run_id }} diff --git a/app/cogs/animal_functions.py b/app/cogs/animal_functions.py index 7ebf4fca..6c19b175 100755 --- a/app/cogs/animal_functions.py +++ b/app/cogs/animal_functions.py @@ -20,7 +20,7 @@ class AnimalFunctions(commands.Cog): await ctx.respond(animals.get_dog()) @commands.slash_command( - guild_ids=None, name="sheeb", description="Posts a photo of a sheeb" + guild_ids=None, name="sheeb", description="Posts a photo of a Sheeb" ) async def sheeb(self, ctx: commands.Context): await ctx.respond(animals.random_sheeb())