We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eef5fe commit 6f5916fCopy full SHA for 6f5916f
.github/workflows/release.yaml
@@ -108,3 +108,11 @@ jobs:
108
shell: bash
109
run: |
110
make push VERSION=${{ steps.version.outputs.version }}
111
+
112
+ - name: Push Helm Chart to OCI registry
113
+ shell: bash
114
+ run: |
115
+ VERSION=${{ steps.version.outputs.version }}
116
+ # Remove 'v' prefix from version
117
+ CHART_VERSION=${VERSION#v}
118
+ helm push helm-releases/kepler-helm-${CHART_VERSION}.tgz oci://${{ env.IMG_BASE }}/charts
0 commit comments