ci: fix the docs files permissions

This commit is contained in:
Quentin Gliech
2023-07-18 11:17:18 +02:00
parent 1869804d7d
commit 83cd0c4c6c

View File

@@ -62,6 +62,12 @@ jobs:
- name: Move the Rust documentation within the mdBook
run: mv target/doc target/book/rustdoc
- name: Fix permissions
run: |
chmod -c -R +rX "_site/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Upload GitHub Pages artifacts
uses: actions/upload-pages-artifact@v2.0.0
with: