Skip to content

Commit da89835

Browse files
committed
No longer need to fix file permissions
As actions/deploy-pages#188 got fixed.
1 parent d38e8a5 commit da89835

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

action.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -104,19 +104,8 @@ runs:
104104
uses: actions/configure-pages@v2
105105
if: ${{ inputs.publish == 'true' }}
106106

107-
- name: Fix file permissions
108-
shell: sh
109-
if: runner.os == 'Linux'
110-
run: |
111-
chmod -c -R +rX "$INPUT_PATH" |
112-
while read line; do
113-
echo "::warning title=Invalid file permissions automatically fixed::$line"
114-
done
115-
env:
116-
INPUT_PATH: ${{ steps.build.outputs.artifact }}
117-
118107
- name: Upload artifact
119-
uses: actions/upload-pages-artifact@v1
108+
uses: actions/upload-pages-artifact@v2
120109
if: ${{ inputs.publish == 'true' }}
121110
with:
122111
path: ${{ steps.build.outputs.artifact }}

0 commit comments

Comments
 (0)