From 75e09bde99918fe791c4177ca1f03a20eb77c041 Mon Sep 17 00:00:00 2001 From: "James M. Greene" Date: Mon, 10 Jul 2023 10:54:54 -0500 Subject: [PATCH] Revert PR #63 It represents a breaking change that we should move into a v2.0.0 release --- action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/action.yml b/action.yml index d4c9a9f..d807537 100644 --- a/action.yml +++ b/action.yml @@ -21,6 +21,9 @@ runs: shell: sh if: runner.os == 'Linux' run: | + chmod -c -R +rX "$INPUT_PATH" | while read line; do + echo "::warning title=Invalid file permissions automatically fixed::$line" + done tar \ --dereference --hard-dereference \ --directory "$INPUT_PATH" \ @@ -36,6 +39,9 @@ runs: shell: sh if: runner.os == 'macOS' run: | + chmod -v -R +rX "$INPUT_PATH" | while read line; do + echo "::warning title=Invalid file permissions automatically fixed::$line" + done gtar \ --dereference --hard-dereference \ --directory "$INPUT_PATH" \