ci: fix version name in aur commit

omit extra 'v' in commit message
This commit is contained in:
Snehit Sah
2025-11-14 20:20:26 +05:30
committed by GitHub
parent c600a4a46f
commit be3ce6e2db

View File

@@ -137,7 +137,7 @@ jobs:
if git diff --staged --quiet; then
echo "No changes to commit"
else
COMMIT_MSG="v${{ steps.get-version.outputs.version }}"
COMMIT_MSG="${{ steps.get-version.outputs.version }}"
git commit -m "$COMMIT_MSG"