fix: install kubectl on ARC runner for deploy-dev job

ARC self-hosted runners don't include kubectl. Download it before
running the deployment commands.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Groom Book CTO
2026-03-25 06:34:30 +00:00
committed by groombook-cto[bot]
parent 2b6c437446
commit f1235c6d3d
+7
View File
@@ -198,6 +198,13 @@ jobs:
contents: read
pull-requests: write
steps:
- name: Install kubectl
run: |
curl -sLO "https://dl.k8s.io/release/$(curl -sL https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
chmod +x kubectl
sudo mv kubectl /usr/local/bin/
kubectl version --client
- name: Deploy to groombook-dev
env:
TAG: pr-${{ github.event.pull_request.number }}