Skip to content

Commit f16515c

Browse files
Add step to list numeric permissions in workflow
Add a step to list numeric permissions of files and directories in pkgroot.
1 parent 1def396 commit f16515c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/lin-build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,13 @@ jobs:
4040
meson setup --prefix=/usr _builddir
4141
meson compile -C _builddir
4242
DESTDIR=$PWD/pkgroot meson install -C _builddir
43-
43+
44+
- name: List permissions numerically
45+
run: |
46+
echo "==== Numeric permissions ===="
47+
find pkgroot -type f -exec stat --format="%a %n" {} \;
48+
find pkgroot -type d -exec stat --format="%a %n" {} \;
49+
4450
- name: Upload artifact
4551
uses: actions/upload-artifact@v4
4652
with:

0 commit comments

Comments
 (0)