From 0a19579c8d7e79e87d630b8fabd354922195b867 Mon Sep 17 00:00:00 2001 From: Jannik Reimers Date: Thu, 3 Apr 2025 17:04:44 +0200 Subject: [PATCH] maybe I should set the image name right --- .github/workflows/root.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/root.yml b/.github/workflows/root.yml index 8269198..6472181 100644 --- a/.github/workflows/root.yml +++ b/.github/workflows/root.yml @@ -39,16 +39,16 @@ jobs: password: ${{ secrets.DOKEY }} - name: Build the Docker image - run: docker build -t registry.digitalocean.com/jansel/feixiao:latest -t registry.digitalocean.com/jansel/feixiao:${{ steps.date.outputs.date }} . + run: docker build -t registry.digitalocean.com/jansel/aglaea:latest -t registry.digitalocean.com/jansel/aglaea:${{ steps.date.outputs.date }} . - name: Push the Docker image related to this workflow - run: docker push registry.digitalocean.com/jansel/feixiao:${{ steps.date.outputs.date }} + run: docker push registry.digitalocean.com/jansel/aglaea:${{ steps.date.outputs.date }} - name: Push the latest Docker image - run: docker push registry.digitalocean.com/jansel/feixiao:latest + run: docker push registry.digitalocean.com/jansel/aglaea:latest - name: Remove the Docker image - run: docker rmi registry.digitalocean.com/jansel/feixiao:${{ steps.date.outputs.date }} + run: docker rmi registry.digitalocean.com/jansel/aglaea:${{ steps.date.outputs.date }} - name: Force remove the latest Docker image - run: docker rmi registry.digitalocean.com/jansel/feixiao:latest --force + run: docker rmi registry.digitalocean.com/jansel/aglaea:latest --force