We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22a38af commit 32f6b21Copy full SHA for 32f6b21
1 file changed
.github/workflows/build_publish.yml
@@ -104,12 +104,15 @@ jobs:
104
# Package and push Helm chart to GHCR
105
# ------------------------------------------------------------
106
- name: Set up Helm
107
- if: github.event_name == 'release' || inputs.push_image
108
uses: azure/setup-helm@v4
109
110
- name: Publish Helm chart
111
if: github.event_name == 'release' || inputs.push_image
112
run: |
+ if [[ ! -f firefly/helm/Chart.yaml ]]; then
113
+ echo "No Helm chart found, skipping."
114
+ exit 0
115
+ fi
116
# align chart appVersion with the image tag
117
sed -i "s/^appVersion:.*/appVersion: \"${{ steps.resolve_tags.outputs.tag }}\"/" firefly/helm/Chart.yaml
118
helm package firefly/helm/
0 commit comments