Skip to content

Commit

Permalink
Merge pull request #4 from flownative/bugfix/inspect
Browse files Browse the repository at this point in the history
Fix helm inspect command arguments
  • Loading branch information
robertlemke authored Sep 16, 2024
2 parents 5ae40c6 + 7021cee commit 35a6674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ INPUT_APP_VERSION=$(echo "${INPUT_APP_VERSION}" | sed -e 's|refs/tags||' | sed -

cd "${INPUT_CHARTS_FOLDER}"

helm inspect chart "${INPUT_CHARTS_FOLDER}"/"${INPUT_CHART_NAME}"
helm inspect chart "${INPUT_CHART_NAME}"
helm package --app-version "${INPUT_APP_VERSION}" --version "${INPUT_CHART_VERSION}" "${INPUT_CHART_NAME}"
echo "${INPUT_REPOSITORY_PASSWORD}" | helm registry login -u "${INPUT_REPOSITORY_USER}" --password-stdin "${INPUT_REGISTRY_HOST}"
helm push "${INPUT_CHART_NAME}-${INPUT_CHART_VERSION}.tgz" "oci://${INPUT_REGISTRY_HOST}/${INPUT_REPOSITORY_PATH}/${INPUT_CHART_NAME}"

0 comments on commit 35a6674

Please sign in to comment.