From 2571e8cf90d3b49e6acd2dd028700030cae5f85a Mon Sep 17 00:00:00 2001 From: Ashish Yadav <18111862+ashiishme@users.noreply.github.com> Date: Sun, 3 Sep 2023 13:27:49 +0200 Subject: [PATCH] :recycle: change the artifact path --- .github/workflows/deploy-docs.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index d29325d..11c84df 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -33,7 +33,7 @@ jobs: cache: 'yarn' - name: Setup Pages - uses: actions/configure-pages@v2 + uses: actions/configure-pages@v3 with: static_site_generator: next @@ -53,16 +53,16 @@ jobs: - name: Build Docs App run: yarn build - - name: Grant permissions - run: | - chmod -c -R +rX docs/out | while read line; do - echo "::warning title=Invalid file permissions automatically fixed::$line" - done + # - name: Grant permissions + # run: | + # chmod -c -R +rX docs/out | while read line; do + # echo "::warning title=Invalid file permissions automatically fixed::$line" + # done - name: Upload Docs App - uses: actions/upload-pages-artifact@v2.0.0 + uses: actions/upload-pages-artifact@v2 with: - path: ./out + path: docs/out deploy: environment: @@ -73,4 +73,4 @@ jobs: steps: - name: Deploy Docs App id: deployment - uses: actions/deploy-pages@v1 + uses: actions/deploy-pages@v2