This is an automated email from the ASF dual-hosted git repository.
ebyhr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 635be51e Helm chart: fix CI failure when there are no changes to the
chart (#381)
635be51e is described below
commit 635be51ef565517c9024fadf9469121027303d7f
Author: Alexandre Dutra <[email protected]>
AuthorDate: Thu Oct 17 14:24:20 2024 +0200
Helm chart: fix CI failure when there are no changes to the chart (#381)
---
.github/workflows/helm.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml
index 9851c2e7..85b1e2a1 100644
--- a/.github/workflows/helm.yml
+++ b/.github/workflows/helm.yml
@@ -87,6 +87,7 @@ jobs:
-t polaris:latest .
- name: Install fixtures
+ if: steps.list-changed.outputs.changed == 'true'
run: |
kubectl create namespace polaris-ns
kubectl apply --namespace polaris-ns $(find helm/polaris/ci/fixtures
-name "*.yaml" -exec echo -n "-f {} " \;)