Skip to content

Commit

Permalink
ci: 📝 Fix CI permissions for GitHub pages
Browse files Browse the repository at this point in the history
  • Loading branch information
pvshvp-oss committed Mar 18, 2024
1 parent 29d7488 commit 48d380c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/api_documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@ jobs:
arguments: '--workspace --all-features --no-deps --document-private-items'
rust_release_channel: nightly
use_cross: false
compilation_target: ${{ matrix.compilation_target }}
compilation_target: ${{ matrix.compilation_target }}
- name: Fix Permissions Step
id: permissions_fix_step
run: |
chmod -c -R +rX "target/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: ⬆ Upload Documentation Step
id: documentation_upload_step
uses: actions/upload-pages-artifact@v3
Expand Down

0 comments on commit 48d380c

Please sign in to comment.