From 9638261fa18bc75149d1226cab9ac414a5581727 Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Mon, 27 May 2024 11:51:33 +0800 Subject: [PATCH] Fix path --- .github/workflows/release-website.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-website.yml b/.github/workflows/release-website.yml index 67b795b..4e51941 100644 --- a/.github/workflows/release-website.yml +++ b/.github/workflows/release-website.yml @@ -19,6 +19,7 @@ jobs: - name: Install run: bun install - name: Build + working-directory: autocorrect-website run: | bun run build cp dist/index.html dist/404.html @@ -27,7 +28,7 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v2 with: - path: "dist" + path: "autocorrect-website/dist" - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2