Fix variable substitution x

This commit is contained in:
Keyvan Ebrahimpour 2025-04-10 22:11:06 +00:00
parent b060cdae3a
commit 45607cbdb1

View file

@ -37,7 +37,7 @@ jobs:
- name: Set up Kubeconfig - name: Set up Kubeconfig
run: | run: |
mkdir -p ~/.kube mkdir -p ~/.kube
echo "${{ secrets.KUBECONFIG }}" > ~/.kube/config echo "${{ secrets.KUBECONFIG_BASE64 }}" | base64 -d > ~/.kube/config
chmod 600 ~/.kube/config chmod 600 ~/.kube/config
- name: Deploy to Kubernetes - name: Deploy to Kubernetes