Skip to content

Commit 5228090

Browse files
committed
chore: Fix echo kubeconfig error
1 parent 3ba9108 commit 5228090

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy-env.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828

2929
- name: 🚀 Deploy
3030
run: |
31-
echo ${{ secrets.ENVRC }} > .envrc
31+
echo "${{ secrets.ENVRC }}" > .envrc
3232
source .envrc
33-
echo ${{ secrets.KUBECONFIG }} > .kubeconfig
33+
echo "${{ secrets.KUBECONFIG }}" > .kubeconfig
3434
export KUBECONFIG=.kubeconfig
3535
3636

0 commit comments

Comments
 (0)