1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-18 03:21:12 +08:00

🐛 fix(ci): fix git commit command syntax

- add missing -m flag to git commit command for proper message formatting
This commit is contained in:
pooneyy 2025-11-12 01:56:43 +08:00
parent 84badd78c4
commit 473b0ef0fc
No known key found for this signature in database

View File

@ -45,6 +45,6 @@ jobs:
if git diff --cached --quiet; then
echo "没有文件变更,跳过提交"
else
git commit --quiet "📝 docs(readme): update notice board"
git commit --quiet -m "📝 docs(readme): update notice board"
fi
git push