chore: Remove redundant sudo call #2
Some checks failed
Container & Helm chart / Semantic Release (Dry-run) (push) Failing after 29s
Container & Helm chart / Container image (push) Has been skipped
Container & Helm chart / Helm chart (push) Has been skipped

This commit is contained in:
Danny Bessems 2024-02-28 10:01:58 +11:00
parent ca1196b371
commit a85702d856

View File

@ -71,9 +71,9 @@ jobs:
- name: Install helm w/ plugins
run: |
curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | tee /usr/share/keyrings/helm.gpg > /dev/null
apt 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
apt update && apt install helm --yes
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" | tee /etc/apt/sources.list.d/helm-stable-debian.list
apt-get update && apt-get install helm --yes
helm plugin install https://github.com/chartmuseum/helm-push
- name: Package helm chart into archive
run: |