fix(actions): chmod +x the k3d binary before executing it
Some checks failed
/ validate (push) Failing after 8s

This commit is contained in:
jad0s 2026-05-20 15:51:03 +02:00
parent 64b54ce654
commit de8285b94d

View file

@ -32,6 +32,7 @@ jobs:
- name: Install k3d - name: Install k3d
run: | run: |
curl -fsSL -o /tmp/k3d https://github.com/k3d-io/k3d/releases/download/v5.7.4/k3d-linux-amd64 curl -fsSL -o /tmp/k3d https://github.com/k3d-io/k3d/releases/download/v5.7.4/k3d-linux-amd64
chmod +x /tmp/k3d
mv /tmp/k3d /usr/local/bin mv /tmp/k3d /usr/local/bin
- name: Create test cluster - name: Create test cluster