Skip to content

Commit 6b5daf9

Browse files
authored
Merge pull request #14 from veekaybee/bump_changed_files
Bump changed files
2 parents 70c1c8b + 1e22126 commit 6b5daf9

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

.github/workflows/deploy_site.yaml

+16-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,22 @@ jobs:
1717

1818
- name: Get changed files in static directory
1919
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
2336
2437
- name: Install SSH key
2538
if: steps.changed-files.outputs.any_changed == 'true'

0 commit comments

Comments
 (0)