Skip to content

Commit

Permalink
Fix permissions for mkdir step of build action
Browse files Browse the repository at this point in the history
  • Loading branch information
xxfast committed Nov 30, 2023
1 parent a96b937 commit 92285e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ jobs:

- name: Move dokka api-doc to docs/api
run: |
sudo mkdir -p ${{ github.workspace }}/build/docs/api
mv ${{ github.workspace }}/build/dokka/htmlMultiModule ${{ github.workspace }}/build/docs/api
sudo mkdir -p build/docs/api
sudo mv build/dokka/htmlMultiModule build/docs/api
- name: Upload pages
uses: actions/upload-pages-artifact@v1
Expand Down

0 comments on commit 92285e8

Please sign in to comment.