This is an automated email from the ASF dual-hosted git repository.
pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new 4ba0f9876 fix(ci): helm installation process
4ba0f9876 is described below
commit 4ba0f98766d87edfe132ec824cd922881186f804
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Thu Sep 4 07:39:13 2025 +0200
fix(ci): helm installation process
Closes #6259
---
.github/workflows/install.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml
index 7525f00f5..9f9ae33f9 100644
--- a/.github/workflows/install.yml
+++ b/.github/workflows/install.yml
@@ -74,9 +74,9 @@ jobs:
- name: Install Helm
shell: bash
run: |
- curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee
/usr/share/keyrings/helm.gpg > /dev/null
- sudo apt-get install apt-transport-https --yes
- echo "deb [arch=$(dpkg --print-architecture)
signed-by=/usr/share/keyrings/helm.gpg]
https://baltocdn.com/helm/stable/debian/ all main" | sudo tee
/etc/apt/sources.list.d/helm-stable-debian.list
+ sudo apt-get install curl gpg apt-transport-https --yes
+ curl -fsSL
https://packages.buildkite.com/helm-linux/helm-debian/gpgkey | gpg --dearmor |
sudo tee /usr/share/keyrings/helm.gpg > /dev/null
+ echo "deb [signed-by=/usr/share/keyrings/helm.gpg]
https://packages.buildkite.com/helm-linux/helm-debian/any/ any main" | sudo tee
/etc/apt/sources.list.d/helm-stable-debian.list
sudo apt-get update
sudo apt-get install helm