We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cae6ebd commit 5211926Copy full SHA for 5211926
1 file changed
.github/workflows/workflow.yaml
@@ -31,6 +31,10 @@ jobs:
31
steps:
32
- name: checkout
33
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
38
- name: updating config
39
run: |
40
IMAGE_TAG="${{ needs.build.outputs.id }}" |
0 commit comments