Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #44 from KyeRussell/patch-1
Don't change file permissions of other files
  • Loading branch information
Yoann Chaudet authored and GitHub committed Dec 16, 2022
2 parents c8641e8 + 98c5608 commit 253fd47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Expand Up @@ -21,7 +21,7 @@ runs:
shell: sh
if: runner.os == 'Linux'
run: |
chmod -c -R +rX . | while read line; do
chmod -c -R +rX "$INPUT_PATH" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
tar \
Expand All @@ -39,7 +39,7 @@ runs:
shell: sh
if: runner.os == 'macOS'
run: |
chmod -v -R +rX . | while read line; do
chmod -v -R +rX "$INPUT_PATH" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
gtar \
Expand Down

0 comments on commit 253fd47

Please sign in to comment.