File tree 1 file changed +16
-3
lines changed
1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 17
17
18
18
- name : Get changed files in static directory
19
19
id : changed-files
20
- uses : tj-actions/changed-files@v41
21
- with :
22
- files : static/**
20
+ run : |
21
+ # Define the directory to check
22
+ DIR_TO_CHECK="static/**"
23
+
24
+ # Get changed files using git
25
+ CHANGED_FILES=$(git diff --name-only ${{ github.event.before }} ${{ github.event.after }} -- $DIR_TO_CHECK || git diff --name-only HEAD~1 HEAD -- $DIR_TO_CHECK)
26
+
27
+ # Check if there are any changed files
28
+ if [[ -n "$CHANGED_FILES" ]]; then
29
+ echo "any_changed=true" >> $GITHUB_OUTPUT
30
+ echo "Changes detected in $DIR_TO_CHECK directory"
31
+ echo "$CHANGED_FILES"
32
+ else
33
+ echo "any_changed=false" >> $GITHUB_OUTPUT
34
+ echo "No changes detected in $DIR_TO_CHECK directory"
35
+ fi
23
36
24
37
- name : Install SSH key
25
38
if : steps.changed-files.outputs.any_changed == 'true'
You can’t perform that action at this time.
0 commit comments