From 8dc009796ad9ba82cee03bfd3c0ad3d1c690580e Mon Sep 17 00:00:00 2001 From: Isuru Rajapakse Date: Thu, 30 Nov 2023 22:54:14 +1100 Subject: [PATCH] Fix permissions for move step of build action --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90bb3ad..67d9580 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -167,8 +167,8 @@ jobs: - name: Move dokka api-doc to docs/api run: | - mkdir -p build/docs/api - mv build/dokka/htmlMultiModule build/docs/api + mkdir -p ${{ github.workspace }}/build/docs/api + mv ${{ github.workspace }}/build/dokka/htmlMultiModule ${{ github.workspace }}/build/docs/api - name: Upload pages uses: actions/upload-pages-artifact@v1