From 194c792f9419b4eb0d7940f7492b1281b60b5300 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Darko=20Kri=C5=BEi=C4=87?= Date: Sun, 3 Mar 2024 21:18:24 +0100 Subject: [PATCH] Fix owner name --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e0ac44..bff75af 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v3 - name: Build the Docker image - run: docker build . --file Dockerfile --tag ghcr.io/deprodyna/deployment-overview:latest + run: docker build . --file Dockerfile --tag ghcr.io/prodyna/deployment-overview:latest # if tag, get the tag as variable - name: Set env @@ -25,9 +25,9 @@ jobs: # if tagged, create docker tag - name: Create a tag for the Docker image if: github.ref == 'refs/heads/main' - run: docker tag ghcr.io/deprodyna/deployment-overview:latest ghcr.io/deprodyna/deployment-overview:${{ env.tag }} + run: docker tag ghcr.io/prodyna/deployment-overview:latest ghcr.io/prodyna/deployment-overview:${{ env.tag }} # if tagged, push the image to the GitHub Container Registry - name: Push the Docker image to the GitHub Container Registry if: github.ref == 'refs/heads/main' - run: docker push ghcr.io/deprodyna/deployment-overview:${{ env.tag }} + run: docker push ghcr.io/prodyna/deployment-overview:${{ env.tag }}