Skip to content

Commit

Permalink
fix: update version bump script
Browse files Browse the repository at this point in the history
Signed-off-by: Iliya Savov <[email protected]>
  • Loading branch information
isavov committed May 17, 2024
1 parent e8ff91c commit 8006657
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/.bump-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const helmChartRegex = "version: \\d+\\.\\d+\\.\\d+(-\\w+)?";
replace({
regex: helmChartRegex,
replacement: `version: ${newVersion}`,
paths: ["charts/hedera-json-rpc-relay/Chart.yaml", "charts/hedera-json-rpc-relay-websocket/Chart.yaml"],
paths: ["charts/hedera-json-rpc-relay/Chart.yaml", "charts/hedera-json-rpc-relay-websocket/Chart.yaml","charts/hedera-json-rpc/Chart.yaml"],
recursive: false,
silent: false,
});
Expand All @@ -86,7 +86,7 @@ const helmChartAppVersionRegex = 'appVersion: "\\d+\\.\\d+\\.\\d+(-\\w+)?"';
replace({
regex: helmChartAppVersionRegex,
replacement: `appVersion: "${newVersion}"`,
paths: ["charts/hedera-json-rpc-relay/Chart.yaml", "charts/hedera-json-rpc-relay-websocket/Chart.yaml"],
paths: ["charts/hedera-json-rpc-relay/Chart.yaml", "charts/hedera-json-rpc-relay-websocket/Chart.yaml","charts/hedera-json-rpc/Chart.yaml"],
recursive: false,
silent: false,
});
Expand Down

0 comments on commit 8006657

Please sign in to comment.