Skip to content

Commit a9598b5

Browse files
committed
fix
1 parent baa41b0 commit a9598b5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/auto-tag.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)