From 0bb499e330f12f6f8de938c1c14da02899f64a6a Mon Sep 17 00:00:00 2001 From: TheThomaas Date: Fri, 26 May 2023 22:05:39 +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 dff9c43..2b5492c 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: npm run production - name: Build Docker image - run: docker build -t ${{ secret.CONTAINER_IMAGE }} --build-arg SITE_DIRECTORY=dist . + run: docker build -t thethomaas/11ty-workflow-example:latest --build-arg SITE_DIRECTORY=dist . - run: | echo ${{secrets.CONTAINER_NAME}} | sed 's/./& /g' @@ -31,4 +31,4 @@ jobs: - name: Run Docker container run: | - docker run -d -p 8086:3000 --name dev ${{ secret.CONTAINER_IMAGE }} --restart unless-stopped \ No newline at end of file + docker run -d -p 8086:3000 --name dev thethomaas/11ty-workflow-example:latest --restart unless-stopped \ No newline at end of file