Update workflow with kubectl installation
Some checks failed
Test CI / test (push) Successful in 5s
Deploy to K3s / deploy (push) Failing after 7s

This commit is contained in:
2026-02-10 07:24:21 +00:00
parent 869910feac
commit 8a74f147de

View File

@@ -16,6 +16,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup kubectl
run: |
echo "Installing kubectl..."
curl -LO "https://dl.k8s.io/release/v1.28.4/bin/linux/amd64/kubectl"
chmod +x kubectl
mv kubectl /usr/local/bin/
kubectl version --client
- name: Deploy to K3s
run: |
echo "Deploying to K3s cluster..."