File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,10 @@ jobs:
3838 git config user.email "github-actions[bot]@users.noreply.github.com"
3939
4040 # Create annotated tag with chart information
41- app_version=$(grep '^appVersion:' aws-integration-setup/charts/nullify-k8s-collector/Chart.yaml | awk '{print $2}' | tr -d '"')
42- description=$(grep '^description:' aws-integration-setup/charts/nullify-k8s-collector/Chart.yaml | cut -d':' -f2- | xargs)
41+ app_version=$(grep '^appVersion:' aws-integration-setup/charts/nullify-k8s-collector/Chart.yaml | awk '{print $2}' | tr -d '"' | tr -d "'")
4342
44- git tag -a ${{ steps.chart-version.outputs.tag }} -m "Release ${{ steps.chart-version.outputs.tag }} - Chart Version: ${{ steps.chart-version.outputs.version }}"
43+ # Create simple tag message without description to avoid quote issues
44+ git tag -a ${{ steps.chart-version.outputs.tag }} -m "Release ${{ steps.chart-version.outputs.tag }} - Chart Version: ${{ steps.chart-version.outputs.version }}, App Version: ${app_version}"
4545 git push origin ${{ steps.chart-version.outputs.tag }}
4646
4747 - name : Create GitHub Release
You can’t perform that action at this time.
0 commit comments