From 9975bb9badf772c631d489279505edeb1b8afe34 Mon Sep 17 00:00:00 2001 From: Roland Bewick Date: Wed, 23 Aug 2023 11:00:03 +0700 Subject: [PATCH] fix: website build config --- .github/workflows/website.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 3ce4f39..f2070c6 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -27,6 +27,9 @@ jobs: name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest + defaults: + run: + working-directory: ./website steps: - name: Checkout uses: actions/checkout@v3 @@ -45,7 +48,7 @@ jobs: uses: actions/upload-pages-artifact@v1 with: # Upload dist repository - path: './dist' + path: './website/dist' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v1