We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f21acad commit 7643dafCopy full SHA for 7643daf
1 file changed
.github/workflows/check_charts.yaml
@@ -29,7 +29,7 @@ jobs:
29
- name: Check Version
30
run: |
31
current_version=$(grep '^version=' pyproject.toml | cut -f2 -d= | tr -d ' ' | tr -d '"')
32
- app_version=$(grep 'appVersion:' deployment/k8s/charts/Chart.yaml | cut -f2 -d: | tr -d ' ')
+ app_version=$(grep 'appVersion:' deployment/k8s/charts/Chart.yaml | cut -f2 -d: | tr -d ' ' | tr -d '"' | cut -d'#' -f1)
33
if [[ "$current_version" != "$app_version" ]]; then
34
echo "❌ current version from pyproject.toml ($current_version) and appVersion from Chart.yaml ($app_version) differs";
35
exit 1;
0 commit comments