From 5d4abe0a485d472fd95d83ad6f4c025de193e0a6 Mon Sep 17 00:00:00 2001 From: James Kim Date: Wed, 11 Sep 2024 14:05:13 -0400 Subject: [PATCH] docs: fix github action --- .github/workflows/deploy-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index c099e5aa..1c93fd0c 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -23,10 +23,10 @@ jobs: with: mdbook-version: "latest" - name: Build book - run: mdbook build + run: mdbook build ./docs - name: Deploy uses: peaceiris/actions-gh-pages@v3 if: ${{ github.ref == 'refs/heads/main' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./book \ No newline at end of file + publish_dir: ./docs/book \ No newline at end of file