Skip to content

Commit

Permalink
Merge pull request #69 from actions/reapply-chmod-removal-for-v2
Browse files Browse the repository at this point in the history
Re-remove built-in `chmod` commands for `v2`
  • Loading branch information
JamesMGreene authored Jul 10, 2023
2 parents 3138c05 + dca6bac commit a753861
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ 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" \
Expand All @@ -39,9 +36,6 @@ 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" \
Expand Down

0 comments on commit a753861

Please sign in to comment.