Skip to content

Commit

Permalink
Add debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
fheinecke committed May 30, 2024
1 parent 664fbfa commit ed6b446
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,13 @@ jobs:
;;
esac
# Trim `v` prefix if exists
CHART_VERSION=${CHART_VERSION#v}
IMAGE_VERSION=${IMAGE_VERSION#v}
# Build/package the chart
helm package . --version "${CHART_VERSION#v}" --app-version "${IMAGE_VERSION#v}"
echo "Setting chart version to ${CHART_VERSION and image version to ${IMAGE_VERSION}}"
helm package . --version "${CHART_VERSION}" --app-version "${IMAGE_VERSION}"
ARTIFACT_NAME=$(find . -name '*.tgz' -exec basename {} \; | head -n 1)
# Publish the chart
Expand Down

0 comments on commit ed6b446

Please sign in to comment.