Skip to content

Commit

Permalink
Push seperately as the make action doesn't seem to like to do it
Browse files Browse the repository at this point in the history
  • Loading branch information
rubik-cube-man committed Oct 19, 2023
1 parent deb9b36 commit 35ac1e4
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,21 @@ jobs:
with:
username: ${{ env.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and Push Images
run: make push.docker.all -e HUB=${{ env.DOCKERHUB_USERNAME }} -e TAG=${{ env.TAG }}
- name: Build Images
run: make docker.all -e HUB=${{ env.DOCKERHUB_USERNAME }} -e TAG=${{ env.TAG }}
- name: Push Operator
run: docker push ${{ env.DOCKERHUB_USERNAME }}/operator:${{ env.TAG }}
- name: Push Ext Authz
run: docker push ${{ env.DOCKERHUB_USERNAME }}/ext-authz:${{ env.TAG }}
- name: Push Istioctl
run: docker push ${{ env.DOCKERHUB_USERNAME }}/istioctl:${{ env.TAG }}
- name: Push App
run: docker push ${{ env.DOCKERHUB_USERNAME }}/app:${{ env.TAG }}
- name: Push Ztunnel
run: docker push ${{ env.DOCKERHUB_USERNAME }}/ztunnel:${{ env.TAG }}
- name: Push Install CNI
run: docker push ${{ env.DOCKERHUB_USERNAME }}/install-cni:${{ env.TAG }}
- name: Push Proxy V2
run: docker push ${{ env.DOCKERHUB_USERNAME }}/proxyv2:${{ env.TAG }}
- name: Push Pilot
run: docker push ${{ env.DOCKERHUB_USERNAME }}/pilot:${{ env.TAG }}

0 comments on commit 35ac1e4

Please sign in to comment.