modified: .gitea/workflows/deploy.yaml
All checks were successful
Casa Home Assistant CI/CD Pipeline (testing) / build (push) Successful in 14s

This commit is contained in:
2025-11-22 02:51:41 +00:00
parent 160176f905
commit 3a3f64a59b

View File

@@ -16,6 +16,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- name: Debug runner paths
run: |
echo "Runner temp: ${{ runner.temp }}"
echo "Workspace: ${{ gitea.workspace }}"
ls -l ${{ runner.temp }}
ls -l ${{ gitea.workspace }}
- name: Setup kubectl
uses: ./.gitea/actions/kubectl-setup
with:
@@ -23,13 +30,20 @@ jobs:
kube_ca_base64: ${{ secrets.casa_vlan_kube_ca_base64 }}
kube_token: ${{ secrets.casa_vlan_kube_token }}
- name: Deploy Home Assistant
shell: bash
- name: Debug runner paths
run: |
set -x
echo "KUBECONFIG=$KUBECONFIG"
kubectl config view
kubectl get pods --request-timeout=10s
echo "Runner temp: ${{ runner.temp }}"
echo "Workspace: ${{ gitea.workspace }}"
ls -l ${{ runner.temp }}
ls -l ${{ gitea.workspace }}
# - name: Deploy Home Assistant
# shell: bash
# run: |
# set -x
# echo "KUBECONFIG=$KUBECONFIG"
# kubectl config view
# kubectl get pods --request-timeout=10s
# - name: Deploy Home Assistant
# shell: bash