Skip to content

Commit f45a76a

Browse files
committed
Check sysmlinks
1 parent 2ebec99 commit f45a76a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ jobs:
5151
echo "Error: Build artifact exceeds 10GB limit."
5252
exit 1
5353
fi
54+
- name: List symlinks and hard links in build output
55+
run: |
56+
echo "Symlinks found:"
57+
find ./build -type l
58+
echo "Files with more than one link (hard links):"
59+
find ./build ! -type d -links +1 -exec ls -li {} +
5460
- name: Upload artifact
5561
uses: actions/upload-artifact@v4
5662
with:

0 commit comments

Comments
 (0)