Skip to content

Commit

Permalink
fix registry variable
Browse files Browse the repository at this point in the history
  • Loading branch information
marnym committed Apr 22, 2024
1 parent 7bfdc2f commit 12428f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build the Docker image
run: docker build . --file Dockerfile --tag ${{ env.registry }}/${{ env.IMAGE_NAME }}:test
run: docker build . --file Dockerfile --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:test

- name: Push the Docker image
run: docker push ${{ env.registry }}/${{ env.IMAGE_NAME }}:test
run: docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:test

0 comments on commit 12428f2

Please sign in to comment.