We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e02d70a + 6de1c7a commit 4506126Copy full SHA for 4506126
1 file changed
action.yml
@@ -17,6 +17,10 @@ runs:
17
shell: sh
18
if: runner.os == 'Linux'
19
run: |
20
+ for f in $(chmod -c -R +r . | awk '{print substr($3, 2, length($3)-2)}')
21
+ do
22
+ echo "::warning::Added read permission to $f"
23
+ done
24
tar \
25
--dereference --hard-dereference \
26
--directory "$INPUT_PATH" \
@@ -32,6 +36,10 @@ runs:
32
36
33
37
if: runner.os == 'macOS'
34
38
39
+ for f in $(chmod -v -R +r .)
40
41
42
35
43
gtar \
44
45
0 commit comments