fix release script and updated go.mod

This commit is contained in:
Safwan
2026-07-01 17:15:08 +05:00
parent eedf231d04
commit a717f8ee9c
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
module github.com/stakater/Reloader
go 1.26.3
go 1.26.4
require (
github.com/argoproj/argo-rollouts v1.9.0
+2 -1
View File
@@ -204,9 +204,10 @@ CHART_FILE="deployments/kubernetes/chart/reloader/Chart.yaml"
sed -i "s/^version:.*/version: ${CHART_VERSION}/" "$CHART_FILE"
sed -i "s/^appVersion:.*/appVersion: v${APP_VERSION}/" "$CHART_FILE"
# Bump values.yaml: image.tag
# Bump values.yaml: image.tag and the deployment version label
VALUES_FILE="deployments/kubernetes/chart/reloader/values.yaml"
sed -i "s/^\( tag:\).*/\1 v${APP_VERSION}/" "$VALUES_FILE"
sed -i "s/^\( version:\).*/\1 v${APP_VERSION}/" "$VALUES_FILE"
# Show changes for review
info "Changes:"