Skip to content

Commit

Permalink
[CI] Fix post-submit container push failure (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffwan authored Sep 27, 2024
1 parent bad1f1f commit 72a7087
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-push-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:
- name: Build Container Images with Github Container Registry prefix
run: |
IMG=ghcr.io/aibrix/controller-manager:${{ github.sha }} make docker-build
PLUGINS_IMG=ghcr.io/aibrix/plugins:${{ github.sha }} make docker-build-plugins
RUNTIME_IMG=ghcr.io/aibrix/runtime:${{ github.sha }} make docker-build-runtime
USERS_IMG=ghcr.io/aibrix/users:${{ github.sha }} make docker-build-users
IMG=ghcr.io/aibrix/controller-manager:${{ github.sha }} AIBRIX_CONTAINER_REGISTRY_NAMESPACE=ghcr.io/aibrix make docker-build
PLUGINS_IMG=ghcr.io/aibrix/plugins:${{ github.sha }} AIBRIX_CONTAINER_REGISTRY_NAMESPACE=ghcr.io/aibrix make docker-build-plugins
RUNTIME_IMG=ghcr.io/aibrix/runtime:${{ github.sha }} AIBRIX_CONTAINER_REGISTRY_NAMESPACE=ghcr.io/aibrix make docker-build-runtime
USERS_IMG=ghcr.io/aibrix/users:${{ github.sha }} AIBRIX_CONTAINER_REGISTRY_NAMESPACE=ghcr.io/aibrix make docker-build-users
- name: Push Container Images to Github Container Registry
run: |
Expand Down

0 comments on commit 72a7087

Please sign in to comment.