Set push to true on workflow
Some checks failed
Build and push / changes (push) Successful in 4s
Build and push / Lint-Python (push) Successful in 6s
Build and push / Build-and-Push-Docker (push) Failing after 10s
Build and push / sync-argocd-app (push) Successful in 3s

This commit is contained in:
Luke R 2024-05-02 13:15:35 -07:00
parent 63ce7406ba
commit 7b83f5dee0
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ jobs:
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:
context: . context: .
push: false push: true
tags: | tags: |
dragon-bot/dale-bot:latest dragon-bot/dale-bot:latest
dragon-bot/dale-bot:${{ gitea.run_id }} dragon-bot/dale-bot:${{ gitea.run_id }}

View File

@ -20,7 +20,7 @@ class AnimalFunctions(commands.Cog):
await ctx.respond(animals.get_dog()) await ctx.respond(animals.get_dog())
@commands.slash_command( @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): async def sheeb(self, ctx: commands.Context):
await ctx.respond(animals.random_sheeb()) await ctx.respond(animals.random_sheeb())