chore: use base64 encoded kubeconfig for pr deployments (#13849)

This commit is contained in:
Muhammad Atif Ali
2024-07-09 16:44:59 +03:00
committed by GitHub
parent 54898033b1
commit a123badccc
+1 -1
View File
@@ -101,7 +101,7 @@ jobs:
run: |
set -euo pipefail
mkdir -p ~/.kube
echo "${{ secrets.PR_DEPLOYMENTS_KUBECONFIG }}" > ~/.kube/config
echo "${{ secrets.PR_DEPLOYMENTS_KUBECONFIG_BASE64 }}" | base64 --decode > ~/.kube/config
chmod 644 ~/.kube/config
export KUBECONFIG=~/.kube/config