Skip to content

Commit

Permalink
fix: updating the keys according to the newer version
Browse files Browse the repository at this point in the history
  • Loading branch information
huniafatima-arbi committed Sep 10, 2024
1 parent 980281b commit 7ba9c87
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/push-registrar-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,19 @@ jobs:
return tagName;
result-encoding: string

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push Dev Docker image
uses: docker/build-push-action@v6
with:
file: dockerfiles/registrar.Dockerfile
push: true
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
target: dev
repository: edxops/registrar-devstack-dev
tags: ${{ steps.get-tag-name.outputs.result }},${{ github.sha }}
tags: edxops/registrar-devstack-dev:${{ steps.get-tag-name.outputs.result }},${{ github.sha }}

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

0 comments on commit 7ba9c87

Please sign in to comment.