Skip to content

Commit

Permalink
[ci] fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
yashgorana committed Feb 26, 2024
1 parent ffd6235 commit e34b0ec
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/pr-tests-helm-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,19 @@ jobs:

- name: Install Dependencies
run: |
# Install python deps
pip install --upgrade tox
# Install k3d
K3D_VERSION=v5.6.0
wget https://github.com/k3d-io/k3d/releases/download/${K3D_VERSION}/k3d-linux-amd64
mv k3d-linux-amd64 k3d
wget --no-verbose -O k3d https://github.com/k3d-io/k3d/releases/download/${K3D_VERSION}/k3d-linux-amd64
chmod +x k3d
export PATH=`pwd`:$PATH
k3d version
# Install helm
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
helm version
- name: Setup Cluster
run: |
Expand Down

0 comments on commit e34b0ec

Please sign in to comment.