Skip to content

Commit

Permalink
Fix gh pages permissions issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chevdor committed Jun 22, 2023
1 parent bd03c3f commit 8c960dd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,19 @@ jobs:

- name: Setup Pages
id: pages
uses: actions/configure-pages@v2
uses: actions/configure-pages@v3

- name: Render doc
run: |
./scripts/build-doc.sh
- 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:
Expand Down

0 comments on commit 8c960dd

Please sign in to comment.