Skip to content

Commit

Permalink
fix: output
Browse files Browse the repository at this point in the history
  • Loading branch information
huniafatima-arbi committed Sep 11, 2024
1 parent 0458ff8 commit 34388f7
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/push-registrar-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ jobs:
return tagName;
result-encoding: string

- name: Login to Docker Hub
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
Expand All @@ -38,8 +44,8 @@ jobs:
file: ./dockerfiles/registrar.Dockerfile
push: true
target: dev
outputs: type=registry,name=edxops/registrar-devstack-dev,push=true
tags: ${{ steps.get-tag-name.outputs.result }},${{ github.sha }}
tags: edxops/registrar-devstack-dev:${{ steps.get-tag-name.outputs.result }},
edxops/registrar-devstack-dev:${{ github.sha }}

- name: Send failure notification
if: failure()
Expand Down

0 comments on commit 34388f7

Please sign in to comment.