Skip to content

Commit

Permalink
Don't bump app version on release
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasovskib committed Jan 16, 2025
1 parent 0a65c77 commit 98f6a12
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/bump_chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,6 @@
updated_yaml = updated_yaml.replace(current_version, new_version)
print(f'Updated version: {new_version}')

# Update appVersion.
if new_app_version != '':
match = re.search(r'appVersion:\s*(.+)', chart_yaml)
if match:
current_app_version = match.group(1)
print(f'Current appVersion: {current_app_version}')

updated_yaml = updated_yaml.replace(current_app_version, f'"{new_app_version}"')
print(f'Updated appVersion: "{new_app_version}"')

with open(chart_yaml_path, 'w') as chart_file:
chart_file.write(updated_yaml)

0 comments on commit 98f6a12

Please sign in to comment.