fix(actions): add argocd login step
Some checks failed
/ validate (push) Failing after 2m11s

This commit is contained in:
jad0s 2026-06-12 21:12:41 +02:00
parent bb399fd508
commit 770e2cd1b9

View file

@ -53,6 +53,14 @@ jobs:
run: |
kubectl apply -f apps/
- name: Login to ArgoCD
run: |
argocd login argocd-server.argocd.svc.cluster.local \
--plaintext \
--grpc-web \
--username admin \
--password $(kubectl get secret argocd-initial-admin-secret -n argocd -o jsonpath="{.data.password}" | base64 -d)
- name: Wait for ArgoCD sync
run: |
APPS=$(argocd app list -o name)