We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df0d101 commit 6d25384Copy full SHA for 6d25384
.github/workflows/release-helm.yaml
@@ -53,5 +53,8 @@ jobs:
53
CHART_NAME=$(yq eval '.name' Chart.yaml)
54
CHART_VERSION=$(yq eval '.version' Chart.yaml)
55
56
+ echo "Chart name: ${CHART_NAME}"
57
+ echo "Chart version: ${CHART_VERSION}"
58
+
59
# Save as OCI artifact
- helm push ${CHART_NAME}-${CHART_VERSION}.tgz oci://ghcr.io/${{ github.repository }}
60
+ helm push "${CHART_NAME}-${CHART_VERSION}.tgz" oci://ghcr.io/${{ github.repository }}
0 commit comments