Skip to content

Commit

Permalink
install argocd cli in ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebot committed Jan 9, 2024
1 parent 97e37fc commit b11c485
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test-smol-k8s-lab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ jobs:
- name: Install smol-k8s-lab via poetry
run: poetry install

- name: Install Argo CD
run: |
curl -sSL -o argocd-linux-amd64 https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64
sudo install -m 555 argocd-linux-amd64 /usr/local/bin/argocd
rm argocd-linux-amd64
- name: source virtual env and test smol-k8s-lab
run: |
source .venv/bin/activate
Expand Down

0 comments on commit b11c485

Please sign in to comment.