From e836a07c5b2d7ae47269b9363bc900455dafc88b Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sun, 23 Apr 2023 12:49:02 +0800 Subject: [PATCH] ... --- .github/workflows/website.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 31b901ec..4bcbeb55 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -15,6 +15,7 @@ jobs: - uses: actions/setup-node@v3.1.1 - name: Retype build run: | + cd docs npm install retypeapp --global retype build ################################################### @@ -26,11 +27,11 @@ jobs: - name: Compile run: | python3 build.py web - mv web .retype/static + mv web docs/.retype/static ################################################### - uses: crazy-max/ghaction-github-pages@v3 with: target_branch: gh-pages - build_dir: .retype + build_dir: docs/.retype env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}