fix(actions): install k3d binary directly instead of running the install script
Some checks failed
/ validate (push) Failing after 4s

This commit is contained in:
jad0s 2026-05-20 11:54:12 +02:00
parent b2d8c623f2
commit ccb98da243

View file

@ -26,15 +26,13 @@ jobs:
./manifests/ ./manifests/
- name: Install k3d - name: Install k3d
run: | run: |
wget -O /tmp/k3d-install.sh https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh wget -O /usr/local/bin/k3d https://github.com/k3d-io/releases/download/v5.7.4/k3d-linux-amd64
apk add curl chmod +x /usr/local/bin/k3d
bash /tmp/k3d-install.sh
- name: Create test cluster - name: Create test cluster
run: | run: |
k3s cluster create test --wait k3d cluster create test --wait
kubectl cluster-info kubectl cluster-info
- name: Apply manifests - name: Apply manifests
run: | run: |
kubectl apply -f manifests/ --recursive kubectl apply -f manifests/ --recursive