Merge pull request #1862 from flyingcakes85/patch-1

[fix] ci: fix version name in aur commit message
This commit is contained in:
Zamitto
2025-11-16 13:38:05 -03:00
committed by GitHub

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"