Skip to content

Commit

Permalink
fix release src img path
Browse files Browse the repository at this point in the history
  • Loading branch information
evyatarmeged committed May 11, 2023
1 parent 4c3fe45 commit fd30fcc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:

- name: Push to Docker Hub
run: |-
docker pull ${{ env.REGISTRY }}:intents-operator-${{ github.sha }}
docker pull ${{ env.REGISTRY }}:watcher-${{ github.sha }}
docker tag ${{ env.REGISTRY }}:intents-operator-${{ github.sha }} otterize/intents-operator:${{ github.ref_name }}
docker tag ${{ env.REGISTRY }}:intents-operator-${{ github.sha }} otterize/intents-operator:latest
docker tag ${{ env.REGISTRY }}:watcher-${{ github.sha }} otterize/intents-operator-pod-watcher:${{ github.ref_name }}
docker tag ${{ env.REGISTRY }}:watcher-${{ github.sha }} otterize/intents-operator-pod-watcher:latest
docker pull ${{ env.REGISTRY }}/intents-operator:${{ github.sha }}
docker pull ${{ env.REGISTRY }}/watcher:${{ github.sha }}
docker tag ${{ env.REGISTRY }}/intents-operator:${{ github.sha }} otterize/intents-operator:${{ github.ref_name }}
docker tag ${{ env.REGISTRY }}/intents-operator:${{ github.sha }} otterize/intents-operator:latest
docker tag ${{ env.REGISTRY }}/watcher:${{ github.sha }} otterize/intents-operator-pod-watcher:${{ github.ref_name }}
docker tag ${{ env.REGISTRY }}/watcher:${{ github.sha }} otterize/intents-operator-pod-watcher:latest
docker push otterize/intents-operator:${{ github.ref_name }}
docker push otterize/intents-operator-pod-watcher:${{ github.ref_name }}
docker push otterize/intents-operator:latest
Expand Down

0 comments on commit fd30fcc

Please sign in to comment.