Skip to content

Commit

Permalink
build: add cron for dependecy chart updates
Browse files Browse the repository at this point in the history
  • Loading branch information
joshiste committed Jan 29, 2024
1 parent 5bda2b4 commit e3260ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ chart-bump-version:
exit 1; \
fi; \
if [ ! -z "$(APP_VERSION)" ]; then \
yq -i ".appVersion = strenv(APP_VERSION)" $(CHART)/Chart.yaml; \
yq -i ".appVersion = strenv(APP_VERSION)" charts/$(CHART)/Chart.yaml; \
fi; \
CHART_VERSION=$$(semver -i patch $$(yq '.version' $(CHART)/Chart.yaml)) \
yq -i ".version = strenv(CHART_VERSION)" $(CHART)/Chart.yaml; \
grep -e "^version:" -e "^appVersion:" $(CHART)/Chart.yaml;
CHART_VERSION=$$(semver -i patch $$(yq '.version' charts/$(CHART)/Chart.yaml)) \
yq -i ".version = strenv(CHART_VERSION)" charts/$(CHART)/Chart.yaml; \
grep -e "^version:" -e "^appVersion:" charts/$(CHART)/Chart.yaml;

0 comments on commit e3260ca

Please sign in to comment.