Skip to content

Commit 5211926

Browse files
committed
updated workflow added kub installation step
1 parent cae6ebd commit 5211926

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/workflow.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ jobs:
3131
steps:
3232
- name: checkout
3333
uses: actions/checkout@v4
34+
- name: Download Kubectl binaries
35+
run: curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
36+
- name: Install Kubectl
37+
run: sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
3438
- name: updating config
3539
run: |
3640
IMAGE_TAG="${{ needs.build.outputs.id }}" |

0 commit comments

Comments
 (0)