[patch] 修复CI/CD提交消息乱码问题

This commit is contained in:
Gitea Actions
2025-10-10 14:15:24 +08:00
parent dddf9a7a74
commit 707ace7ba1

View File

@@ -152,12 +152,12 @@ jobs:
$BRANCH = "${{ github.ref_name }}" $BRANCH = "${{ github.ref_name }}"
Write-Host "Committing to branch: $BRANCH" Write-Host "Committing to branch: $BRANCH"
git commit -m "[skip ci] 🤖 自动更新版本到 v$VERSION" git commit -m "[skip ci] Update version to v$VERSION"
git push origin $BRANCH git push origin $BRANCH
Write-Host "Version changes committed and pushed to $BRANCH" Write-Host "Version changes committed and pushed to $BRANCH"
} else { } else {
Write-Host " No changes to commit" Write-Host "No changes to commit"
} }
# Step 6: Display summary # Step 6: Display summary