From 11f130964c0e8714fabc8025b21f2d092989589a Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Tue, 15 Oct 2024 13:57:39 -0600 Subject: [PATCH] ci: Attempting recursive chown root:root before creating tar Trying a recursive chown to see if this helps before archiving. Signed-off-by: Tyler Erickson --- .github/workflows/meson.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/meson.yml b/.github/workflows/meson.yml index 184e583..2f38399 100644 --- a/.github/workflows/meson.yml +++ b/.github/workflows/meson.yml @@ -290,7 +290,7 @@ jobs: - name: Set ownership of executables to root:root if: ${{ matrix.config.os != 'windows-latest' }} - run: sudo chown root:root build/openSeaChest_* + run: sudo chown -R root:root build - name: Packing release