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 e70c17f commit 8c0e8e9Copy full SHA for 8c0e8e9
.github/workflows/pull-request.yaml
@@ -186,8 +186,9 @@ jobs:
186
187
cd $chart_directory
188
189
- CHART_VERSION='0.1.0-${{ github.run_number }}'
190
- APP_VERSION='unstable-${GITHUB_SHA::7}'
+ SHORT_SHA=$(echo "${{ github.sha }}" | cut -c1-7)
+ CHART_VERSION="0.1.0-${{ github.run_number }}"
191
+ APP_VERSION="unstable-${SHORT_SHA}"
192
193
helm dep update .
194
helm lint --strict .
0 commit comments