We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6e866d0 + 75e09bd commit 81e1cafCopy full SHA for 81e1caf
action.yml
@@ -21,6 +21,9 @@ runs:
21
shell: sh
22
if: runner.os == 'Linux'
23
run: |
24
+ chmod -c -R +rX "$INPUT_PATH" | while read line; do
25
+ echo "::warning title=Invalid file permissions automatically fixed::$line"
26
+ done
27
tar \
28
--dereference --hard-dereference \
29
--directory "$INPUT_PATH" \
@@ -36,6 +39,9 @@ runs:
36
39
37
40
if: runner.os == 'macOS'
38
41
42
+ chmod -v -R +rX "$INPUT_PATH" | while read line; do
43
44
45
gtar \
46
47
0 commit comments