diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index c31db6e6..32d0a420 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -29,6 +29,13 @@ jobs: run: cargo doc --color=always --no-deps --all - name: Setup Pages uses: actions/configure-pages@v3 + - name: Fix file permissions + shell: sh + run: | + chmod -c -R +rX "target/doc" | + while read line; do + echo "::warning title=Invalid file permissions automatically fixed::$line" + done - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: