From 733dbba33bae14871549dcaf0611fb27bf0e8d1e Mon Sep 17 00:00:00 2001 From: Leszek Grzanka Date: Mon, 9 Dec 2024 16:19:20 +0100 Subject: [PATCH] test --- .github/workflows/release-pip.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-pip.yml b/.github/workflows/release-pip.yml index cd60a66e..a88b6193 100644 --- a/.github/workflows/release-pip.yml +++ b/.github/workflows/release-pip.yml @@ -139,9 +139,13 @@ jobs: run: | find test -type l - - name: List recursively all files, including their permissions + - name: List recursively all files, including their permissions, including hidden files: run: | - ls -lR test + ls -laR test + + - name: List all files (recursively), which miss reading permission for others + run: | + find test -type f ! -perm /o+r - name: Deploy to GitHub Pages uses: actions/deploy-pages@v4