Skip to content

Commit

Permalink
Fix owner name
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrizic committed Mar 3, 2024
1 parent cf03326 commit 194c792
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}

0 comments on commit 194c792

Please sign in to comment.