Skip to content

Commit b27b6af

Browse files
authored
Merge branch 'main' into customize-artifact-name
2 parents 90d4377 + 7390744 commit b27b6af

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ runs:
2121
shell: sh
2222
if: runner.os == 'Linux'
2323
run: |
24-
chmod -c -R +r . | while read line; do
25-
echo "::warning title=Changed permissions on a file::$line"
24+
chmod -c -R +rX . | while read line; do
25+
echo "::warning title=Invalid file permissions automatically fixed::$line"
2626
done
2727
tar \
2828
--dereference --hard-dereference \
@@ -39,8 +39,8 @@ runs:
3939
shell: sh
4040
if: runner.os == 'macOS'
4141
run: |
42-
chmod -v -R +r . | while read line; do
43-
echo "::warning title=Changed permissions on a file::$line"
42+
chmod -v -R +rX . | while read line; do
43+
echo "::warning title=Invalid file permissions automatically fixed::$line"
4444
done
4545
gtar \
4646
--dereference --hard-dereference \

0 commit comments

Comments
 (0)