From 2b198e6beddf9be83bddef5874a24bedebd6cfea Mon Sep 17 00:00:00 2001 From: TheThomaas Date: Wed, 24 May 2023 21:09:04 +0200 Subject: [PATCH] Update deploy.yml --- .gitea/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 9a37f2c..18b0198 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -26,10 +26,10 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} - name: Build Docker image - run: docker build -t gitea.local.thethomaas.net/TheThomaas/11ty-workflow-example --build-arg SITE_DIRECTORY=dist . + run: docker build -t gitea.local.thethomaas.net/TheThomaas/11ty-workflow-example:latest --build-arg SITE_DIRECTORY=dist . - name: Push Docker image - run: docker push gitea.local.thethomaas.net/TheThomaas/11ty-workflow-example + run: docker push gitea.local.thethomaas.net/TheThomaas/11ty-workflow-example:latest - name: Set up Docker Compose uses: https://github.com/isbang/compose-action@v1.4.1