Merge pull request #69 from actions/reapply-chmod-removal-for-v2

Re-remove built-in `chmod` commands for `v2`
This commit is contained in:
James M. Greene
2023-07-10 13:12:45 -05:00
committed by GitHub

View File

@@ -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" \
@@ -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" \