fix: Fixed ci workflow
Chart Release / chart (push) Successful in 19s
Server Deploy / deploy (push) Successful in 1m18s

This commit is contained in:
2026-09-08 09:19:11 +00:00
parent 3164f5ca22
commit 262795bf2e
+2 -2
View File
@@ -121,7 +121,7 @@ jobs:
- name: Build and push server image
if: steps.changed.outputs.server == 'true'
run: |
IMAGE="${{ vars.DOCKER_HOST }}/${{ github.repository_owner }}/vantage-app/server:latest"
IMAGE="${{ vars.DOCKER_HOST }}/vantage/vantage-app/server:latest"
docker build --secret id=netrc,src="$HOME/.netrc" \
-t "$IMAGE" -f server/Dockerfile .
docker push "$IMAGE"
@@ -129,7 +129,7 @@ jobs:
- name: Build and push web image
if: steps.changed.outputs.web == 'true'
run: |
IMAGE="${{ vars.DOCKER_HOST }}/${{ github.repository_owner }}/vantage-app/web:latest"
IMAGE="${{ vars.DOCKER_HOST }}/vantage/vantage-app/web:latest"
docker build \
--build-arg NEXT_PUBLIC_HQ_URL="${{ vars.HQ_URL }}" \
-t "$IMAGE" \