We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
git add --all
git diff --staged
1 parent e33a744 commit cb2a30fCopy full SHA for cb2a30f
.github/workflows/doc.yml
@@ -78,11 +78,12 @@ jobs:
78
79
find gdnative -name .html -o -type f -print0 | xargs -0 sed -i 's/'"$libVersion"'/master/g'
80
81
- if git diff --exit-code --quiet
+ # Add all files to index and look at staged diff
82
+ git add --all
83
+ if git diff --exit-code --staged --quiet
84
then
85
echo "$shortSha introduces no doc changes; skip commit and push."
86
else
- git add --all
87
git commit -m "Sync doc from $shortSha
88
89
Revision in godot-rust: ${GITHUB_SHA}"
0 commit comments