mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-16 03:32:33 +08:00
ci: 解决sync-wiki.yml异常退出问题
This commit is contained in:
parent
fc803a3742
commit
a11a152bd7
15
.github/workflows/sync-wiki.yml
vendored
15
.github/workflows/sync-wiki.yml
vendored
|
@ -30,11 +30,16 @@ jobs:
|
||||||
- name: Copy res/wiki content to wiki
|
- name: Copy res/wiki content to wiki
|
||||||
run: |
|
run: |
|
||||||
cp -r res/wiki/* wiki/
|
cp -r res/wiki/* wiki/
|
||||||
|
- name: Check for changes
|
||||||
|
run: |
|
||||||
|
cd wiki
|
||||||
|
if git diff --quiet; then
|
||||||
|
echo "No changes to commit."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
- name: Commit and Push Changes
|
- name: Commit and Push Changes
|
||||||
run: |
|
run: |
|
||||||
cd wiki
|
cd wiki
|
||||||
if git diff --name-only; then
|
git add .
|
||||||
git add .
|
git commit -m "Update wiki"
|
||||||
git commit -m "Update wiki"
|
git push
|
||||||
git push
|
|
||||||
fi
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user