Update .gitea/workflows/ci.yml

This commit is contained in:
Arlind
2025-06-11 10:42:48 +02:00
parent 951228f84e
commit 167fd085ae

View File

@@ -119,8 +119,7 @@ jobs:
- name: Pull Git LFS objects for src and changed skins
shell: bash
run: |
# always include your source files
includes="src/**"
includes="src/**,export/**,media/**"
if [[ -n "$CHANGED_SKINS_FILE" ]]; then
skin_includes=$(
@@ -587,7 +586,7 @@ jobs:
get_desc() {
key=$1
grep "^${key}=" "$DESC_FILE" 2>/dev/null | cut -d '=' -f2-
grep -- "^${key}=" "$DESC_FILE" 2>/dev/null | cut -d '=' -f2-
}
ORDER_FILE=$(mktemp)
@@ -620,7 +619,7 @@ jobs:
skin_header=$(printf '%s' "$skin_header" | tr -d '\r\n' | sed -e 's/[[:space:]]*$//')
if grep -Fxq "$skin_header" "$SEEN_HEADERS_FILE"; then
if grep -F -x -q -- "$skin_header" "$SEEN_HEADERS_FILE"; then
echo " Already seen skin header: $skin_header"
continue
fi
@@ -685,12 +684,12 @@ jobs:
skin_header=$(printf '%s' "$skin_header" | tr -d '\r\n' | sed -e 's/[[:space:]]*$//')
if grep -Fxq "$skin_header" "$SEEN_HEADERS_FILE"; then
if grep -F -x -q -- "$skin_header" "$SEEN_HEADERS_FILE"; then
echo " Already seen (extra): $skin_header"
continue
fi
if grep -Fxq "$skin" "$JSON_SKINS_TMP"; then
if grep -F -x -q -- "$skin" "$JSON_SKINS_TMP"; then
echo " Already ordered (extra): $skin"
continue
fi