Skip to content

Commit

Permalink
cleanup: wrong var
Browse files Browse the repository at this point in the history
  • Loading branch information
parvit committed Nov 20, 2024
1 parent 633b42c commit a1448bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ jobs:
- name: Check files difference
id: check_file_changed
run: |
SRC_DIFF=$(git diff --name-only | grep -E "$SRC_DIFF" | wc -l)
SRC_DIFF=$(git diff --name-only | grep -E "SRC_PATTERN" | wc -l)
echo ">> Differing source files list <<"
echo $(git diff --name-only | grep -E "$SRC_DIFF")
echo $(git diff --name-only | grep -E "SRC_PATTERN")
echo "---------------------------------"
if [[ "$SRC_DIFF" -gt "0" ]]; then
echo ">> Found differing source files, executing integration workflow"
Expand Down

0 comments on commit a1448bb

Please sign in to comment.