diff --git a/.github/workflows/build-test-deploy.yml b/.github/workflows/build-test-deploy.yml index 4c2a1a5..43ca7e6 100644 --- a/.github/workflows/build-test-deploy.yml +++ b/.github/workflows/build-test-deploy.yml @@ -66,13 +66,16 @@ jobs: - run: npm install - run: npm run build --if-present + - name: Static HTML export with Next.js + run: npx next export + - name: Configure GitHub Pages uses: actions/configure-pages@v3 - name: Upload Artifacts uses: actions/upload-pages-artifact@v1 with: - path: "." + path: "./out" - name: Deploy id: deployment