fix(actions): fix the 'Wait for argocd sync' step logic
Some checks failed
/ validate (push) Failing after 1m53s

This commit is contained in:
jad0s 2026-06-12 21:08:46 +02:00
parent f57a22bf16
commit bb399fd508

View file

@ -55,8 +55,9 @@ jobs:
- name: Wait for ArgoCD sync
run: |
argocd app sync --all --server argocd-server.argocd.svc.cluster.local --plaintext --grpc-web
argocd app wait --all --health --timeout 300 --server argocd-server.argocd.svc.cluster.local --plaintext --grpc-web
APPS=$(argocd app list -o name)
argocd app sync --async $APPS
argocd app wait --health --timeout 300 $APPS
- name: Wait for all deployments
run: |