Skip to content

Commit

Permalink
Fix workflow kubeconfig write
Browse files Browse the repository at this point in the history
  • Loading branch information
WalissonPires committed Nov 10, 2024
1 parent 3eb9bc8 commit 4178ec6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ jobs:
uses: actions/checkout@v4

- name: Config kubectl
run: echo ${{ secrets.KUBECONFIG }} >> $HOME/.kube/config
env:
KUBECONFIG: ${{ secrets.KUBECONFIG }}
run: echo "$KUBECONFIG" >> $HOME/.kube/config

- name: Deploy K8s
uses: Azure/k8s-deploy@v5
Expand Down

0 comments on commit 4178ec6

Please sign in to comment.