Skip to content

Commit 8e64bba

Browse files
authored
ci: Add missing Helm repos for the lint job to pass (#128)
1 parent 4b8672b commit 8e64bba

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@ jobs:
4646
echo "changed=true" >> "$GITHUB_OUTPUT"
4747
fi
4848
49+
- name: Add Helm Repositories
50+
if: steps.list-changed.outputs.changed == 'true'
51+
run: |
52+
helm repo add bitnami https://charts.bitnami.com/bitnami
53+
helm repo add backstage https://backstage.github.io/charts
54+
helm repo update
55+
4956
- name: Run chart-testing (lint)
5057
if: steps.list-changed.outputs.changed == 'true'
5158
run: |

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ jobs:
5959
echo "changed=true" >> "$GITHUB_OUTPUT"
6060
fi
6161
62-
- name: "Add NGINX Ingress and Bitnami Repository"
62+
- name: Add Helm Repositories
6363
if: steps.list-changed.outputs.changed == 'true'
6464
run: |
65-
helm repo add ingress-nginx "https://kubernetes.github.io/ingress-nginx"
66-
helm repo add bitnami "https://charts.bitnami.com/bitnami"
65+
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
66+
helm repo add bitnami https://charts.bitnami.com/bitnami
6767
helm repo add backstage https://backstage.github.io/charts
6868
helm repo update
6969

0 commit comments

Comments
 (0)