Skip to content

Commit

Permalink
Fix helm script to force push on merge. (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
echoboomer committed Jan 15, 2024
1 parent dfb2ea1 commit 099ccef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ if [ "$CIRCLE_BRANCH" = "main" ]; then
echo -e "${cGreen}[!] Packaging charts...${cNone}"
for f in $(ls .); do
CHART_VERSION=$(helm show chart $f | grep '^version' | sed 's/^version: //')
helm cm-push "$f" $CHART_REPOSITORY_NAME
helm cm-push --force "$f" $CHART_REPOSITORY_NAME
done
fi

0 comments on commit 099ccef

Please sign in to comment.