change check

This commit is contained in:
2025-12-04 14:49:37 -06:00
parent 3012504e96
commit f34b836906
4 changed files with 18 additions and 12 deletions

View File

@@ -197,14 +197,11 @@ jobs:
run: |
cd ${MANIFEST_DIR}
git status --porcelain --untracked-files=all | grep '^.'
GIT_CHANGES=$(git status --porcelain)
git status --porcelain --untracked-files=all | grep -q '^.'
echo $?
if git status --porcelain --untracked-files=all | grep -q '^.' ; then
if [ -n "$GIT_CHANGES" ]; then
echo ">> Changes detected"
# git status --porcelain --untracked-files=all
git status --porcelain
echo "changes-detected=true" >> $GITEA_OUTPUT
else