Skip to content

Commit 6e478cf

Browse files
committed
CI: make workflow file changes also trigger experimental build
1 parent c7c6801 commit 6e478cf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/cmake-experimental.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ on:
1919
- "CMakeLists.txt"
2020
- "cmake/**"
2121
- "cppmods/**"
22+
- ".github/workflows/**"
2223

2324
permissions:
2425
contents: read
@@ -67,8 +68,8 @@ jobs:
6768
echo "Changed files:"
6869
echo "$CHANGED_FILES"
6970
70-
# Check for UE4SS code changes
71-
UE4SS_CHANGES=$(echo "$CHANGED_FILES" | grep -E "^(UE4SS/|deps/|CMakeLists\.txt|cmake/)" || true)
71+
# Check for UE4SS code changes (including workflow changes which should trigger full build)
72+
UE4SS_CHANGES=$(echo "$CHANGED_FILES" | grep -E "^(UE4SS/|deps/|CMakeLists\.txt|cmake/|\.github/workflows/)" || true)
7273
7374
# Check for C++ mod changes
7475
CPPMOD_CHANGES=$(echo "$CHANGED_FILES" | grep -E "^cppmods/" || true)

0 commit comments

Comments
 (0)