We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ebec99 commit f45a76aCopy full SHA for f45a76a
.github/workflows/build.yml
@@ -51,6 +51,12 @@ jobs:
51
echo "Error: Build artifact exceeds 10GB limit."
52
exit 1
53
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 {} +
60
- name: Upload artifact
61
uses: actions/upload-artifact@v4
62
with:
0 commit comments