From 2642ae83d262914c825befd92a68600f6802ddd4 Mon Sep 17 00:00:00 2001 From: Fabian Aguilar Gomez Date: Tue, 13 Jun 2023 16:33:18 -0500 Subject: [PATCH 1/2] Update action.yml --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index d807537..a0d35d2 100644 --- a/action.yml +++ b/action.yml @@ -21,7 +21,7 @@ runs: shell: sh if: runner.os == 'Linux' run: | - chmod -c -R +rX "$INPUT_PATH" | while read line; do + while read line; do echo "::warning title=Invalid file permissions automatically fixed::$line" done tar \ @@ -39,7 +39,7 @@ runs: shell: sh if: runner.os == 'macOS' run: | - chmod -v -R +rX "$INPUT_PATH" | while read line; do + while read line; do echo "::warning title=Invalid file permissions automatically fixed::$line" done gtar \ From dd7005653b843b072f20ea3bc252190a7ebd724b Mon Sep 17 00:00:00 2001 From: Fabian Aguilar Gomez Date: Thu, 15 Jun 2023 12:37:17 -0500 Subject: [PATCH 2/2] Update action.yml --- action.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/action.yml b/action.yml index a0d35d2..d4c9a9f 100644 --- a/action.yml +++ b/action.yml @@ -21,9 +21,6 @@ runs: shell: sh if: runner.os == 'Linux' run: | - while read line; do - echo "::warning title=Invalid file permissions automatically fixed::$line" - done tar \ --dereference --hard-dereference \ --directory "$INPUT_PATH" \ @@ -39,9 +36,6 @@ runs: shell: sh if: runner.os == 'macOS' run: | - while read line; do - echo "::warning title=Invalid file permissions automatically fixed::$line" - done gtar \ --dereference --hard-dereference \ --directory "$INPUT_PATH" \