Install ArgoCD in the cleanup stage
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Nikolai Rodionov 2023-04-24 17:14:50 +02:00
parent 5d65d1042d
commit 460d4fca68
Signed by: allanger
GPG Key ID: 19DB54039EBF8F10
1 changed files with 4 additions and 1 deletions

View File

@ -171,7 +171,10 @@ steps:
commands:
- echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG
- apk update
- apk add curl jq perl git
- apk add curl jq perl git yq
- curl -sSL -o argocd-linux-amd64 https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64
- install -m 555 argocd-linux-amd64 /usr/local/bin/argocd
- rm argocd-linux-amd64
- ./scripts/cleanup.pl
---