From a617ed7073894be3a6f05892ae30493696c0605d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Gr=C3=B8ndahl?= Date: Tue, 10 Mar 2026 23:27:58 +0000 Subject: [PATCH] fix: correct helm-docs download filename to Linux_x86_64 --- .github/workflows/update-cli-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-cli-docs.yml b/.github/workflows/update-cli-docs.yml index d503c96..5d222e1 100644 --- a/.github/workflows/update-cli-docs.yml +++ b/.github/workflows/update-cli-docs.yml @@ -67,7 +67,7 @@ jobs: - name: Install helm-docs run: | - curl -sL https://github.com/norwoodj/helm-docs/releases/download/v1.14.2/helm-docs_1.14.2_linux_amd64.deb --output helm-docs.deb + curl -sL https://github.com/norwoodj/helm-docs/releases/download/v1.14.2/helm-docs_1.14.2_Linux_x86_64.deb --output helm-docs.deb sudo dpkg -i helm-docs.deb rm helm-docs.deb