Skip to content

Commit

Permalink
fix: file permissions to deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
bingxueshuang committed Sep 22, 2023
1 parent 62527a4 commit cb9e315
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
- name: Create rustdoc
run: cargo doc --document-private-items

- name: Fix permissions
run: |
chmod -c -R +rX "target/doc" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Upload artifacts
uses: actions/upload-pages-artifact@v2
with:
Expand Down

0 comments on commit cb9e315

Please sign in to comment.