fix echo again

This commit is contained in:
Florian Herrengt 2022-12-05 23:33:12 +00:00
parent 8694068e1a
commit badc8c6b0a
1 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,6 @@ jobs:
- name: Download kubectl - name: Download kubectl
run: curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" run: curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
- name: Setting up kubeconfig - name: Setting up kubeconfig
run: echo "${{ secrets.KUBE_CONFIG }}"" > kube.config run: echo "${{ secrets.KUBE_CONFIG }}" > kube.config
- name: Check if it works - name: Check if it works
run: ./kubectl --kubeconfig ./kube.config get nodes run: ./kubectl --kubeconfig ./kube.config get nodes