Skip to content

Commit

Permalink
Try to find problem with app version in chart
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasovskib committed Apr 23, 2024
1 parent 5af76e8 commit d522718
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ jobs:
- name: Bump chart version
if: ${{ github.event_name == 'release' }}
run: |
echo "Release tag is ${{env.RELEASE_TAG}}"
python ./.github/workflows/bump_chart.py ${CHART_PATH}/Chart.yaml ${{env.RELEASE_TAG}}
- name: Parse Chart.yaml
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/bump_chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

new_app_version=''
if len(sys.argv) >= 3 and sys.argv[2] != '':
print(f'New appVersion: {sys.argv[2]}')
new_app_version=sys.argv[2]

chart_yaml_path=sys.argv[1]
Expand Down

0 comments on commit d522718

Please sign in to comment.