We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a93e3e commit fbb178aCopy full SHA for fbb178a
1 file changed
.github/workflows/helm-charts-release.yaml
@@ -31,7 +31,6 @@ jobs:
31
dir="$(dirname "${chart}")"
32
cd "${dir}" || exit
33
echo "Processing Helm Chart in $dir"
34
- helm package --version $RELEASE_VERSION .
35
NAME=$(yq eval '.name' - < Chart.yaml)
36
if [ -d "docs" ]; then
37
echo "Docs Folder found at: ${dir}/docs"
@@ -40,6 +39,7 @@ jobs:
40
39
else
41
echo "Ignoring Docs process for Chart $dir, because no `docs` folder found at: ${dir}/docs"
42
fi
+ helm package --version $RELEASE_VERSION .
43
44
curl --silent --show-error --http1.1 --user "${USERNAME}:${PASSWORD}" --data-binary "@${NAME}-${RELEASE_VERSION}.tgz" "${HELM_REGISTRY}/api/charts"
45
sleep 5s
0 commit comments